diff --git a/.azure-pipelines/daily-build.yml b/.azure-pipelines/daily-build.yml
index 8b05e6719383..793fdfacfbe4 100644
--- a/.azure-pipelines/daily-build.yml
+++ b/.azure-pipelines/daily-build.yml
@@ -29,10 +29,10 @@ jobs:
git clean -xdf
- task: PowerShell@2
- displayName: Prepare Powershell $(PSVersion)
+ displayName: Prepare Powershell $(PSVersion)
inputs:
filePath: 'tools/Test/SmokeTest/PrepareRequiredPowershell.ps1'
- arguments: '-RequiredPsVersion $(PSVersion)'
+ arguments: '-RequiredPsVersion $(PSVersion)'
- task: PowerShell@2
displayName: 'Install platyPS'
@@ -49,7 +49,7 @@ jobs:
inputs:
command: custom
custom: msbuild
- arguments: 'build.proj /t:"Build" /p:"Configuration=Release"'
+ arguments: 'build.proj /t:"Build" /p:"Configuration=Release;TurnOnTestCoverage=true"'
- task: PowerShell@2
displayName: 'Bump Version'
@@ -60,7 +60,7 @@ jobs:
Get-PSRepository `
./tools/RunVersionController.ps1 -Release 'Daily Build $(today)' `
Exit"
- dotnet tool run pwsh -c $command
+ dotnet tool run pwsh -c $command
- task: PowerShell@2
displayName: 'Clean artifacts folder'
@@ -74,7 +74,7 @@ jobs:
inputs:
command: custom
custom: msbuild
- arguments: 'build.proj /t:Build /p:Configuration=Release'
+ arguments: 'build.proj /t:Build /p:Configuration=Release;TurnOnTestCoverage=true'
- task: EsrpCodeSigning@1
inputs:
@@ -133,7 +133,7 @@ jobs:
SessionTimeout: '60'
MaxConcurrency: '50'
MaxRetryAttempts: '5'
-
+
- task: EsrpCodeSigning@1
displayName: 'Sign 3rd Party [Strong Name]'
inputs:
diff --git a/.azure-pipelines/live-test.yml b/.azure-pipelines/live-test.yml
new file mode 100644
index 000000000000..61cc7c56afd9
--- /dev/null
+++ b/.azure-pipelines/live-test.yml
@@ -0,0 +1,128 @@
+parameters:
+- name: win_image
+ displayName: Windows Image Version
+ type: string
+ default: windows-2019
+- name: linux_image
+ displayName: Linux Image Version
+ type: string
+ default: ubuntu-20.04
+- name: macOS_image
+ displayName: MacOS Image Version
+ type: string
+ default: macOS-11
+- name: win_ps_5_1
+ displayName: Windows PowerShell 5.1 Version
+ type: string
+ default: 5.1
+- name: ps_7_0_x
+ displayName: PowerShell 7.0.x Version
+ type: string
+ default: 7.0.13
+- name: ps_7_1_x
+ displayName: PowerShell 7.1.x Version
+ type: string
+ default: 7.1.7
+- name: ps_7_2_x
+ displayName: PowerShell 7.2.x Version
+ type: string
+ default: 7.2.7
+- name: ps_latest
+ displayName: PowerShell Latest Version
+ type: string
+ default: latest
+- name: dotnet_sdk_6
+ displayName: .NET 6 SDK Version
+ type: string
+ default: 6.0.x
+- name: dotnet_sdk_7
+ displayName: .NET 7 SDK Version
+ type: string
+ default: 7.0.x
+
+variables:
+ LiveTestArtifactsName: LiveTestArtifacts
+ LiveTestDataLocation: $(Pipeline.Workspace)/$(LiveTestArtifactsName)
+ EnableTestCoverage: true
+ TestCoverageLocation: $(LiveTestDataLocation)
+
+pr: none
+trigger: none
+
+jobs:
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'win_ps_5_1'
+ vmImage: ${{ parameters.win_image }}
+ psVersion: ${{ parameters.win_ps_5_1 }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_0_x_win'
+ vmImage: ${{ parameters.win_image }}
+ psVersion: ${{ parameters.ps_7_0_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_1_x_win'
+ vmImage: ${{ parameters.win_image }}
+ psVersion: ${{ parameters.ps_7_1_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_2_x_win'
+ vmImage: ${{ parameters.win_image }}
+ psVersion: ${{ parameters.ps_7_2_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_latest_win'
+ vmImage: ${{ parameters.win_image }}
+ psVersion: ${{ parameters.ps_latest }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_7 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_0_x_linux'
+ vmImage: ${{ parameters.linux_image }}
+ psVersion: ${{ parameters.ps_7_0_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_1_x_linux'
+ vmImage: ${{ parameters.linux_image }}
+ psVersion: ${{ parameters.ps_7_1_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_2_x_linux'
+ vmImage: ${{ parameters.linux_image }}
+ psVersion: ${{ parameters.ps_7_2_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_latest_linux'
+ vmImage: ${{ parameters.linux_image }}
+ psVersion: ${{ parameters.ps_latest }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_7 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_7_2_x_macOS'
+ vmImage: ${{ parameters.macOS_image }}
+ psVersion: ${{ parameters.ps_7_2_x }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_6 }}
+
+- template: util/live-test-steps.yml
+ parameters:
+ name: 'ps_latest_macOS'
+ vmImage: ${{ parameters.macOS_image }}
+ psVersion: ${{ parameters.ps_latest }}
+ dotnetVersion: ${{ parameters.dotnet_sdk_7 }}
diff --git a/.azure-pipelines/security-tools.yml b/.azure-pipelines/security-tools.yml
index 71a5d76c9ae6..c2c585062739 100644
--- a/.azure-pipelines/security-tools.yml
+++ b/.azure-pipelines/security-tools.yml
@@ -31,7 +31,7 @@ jobs:
condition: eq(variables.IsGenerateBased, true)
inputs:
versionSpec: 14.17.1
-
+
- task: PowerShell@2
displayName: Install autorest
condition: eq(variables.IsGenerateBased, true)
@@ -54,6 +54,13 @@ jobs:
scanFolder: SecurityTmp
suppressionsFile: tools/SecurityTools/CredScanSuppressions.json
+ - task: PowerShell@2
+ displayName: Copy PDB for BinSkim
+ inputs:
+ targetType: inline
+ script: ./src/lib/pdb/CopyPdbToArtifacts.ps1
+ pwsh: true
+
- task: securedevelopmentteam.vss-secure-development-tools.build-task-binskim.BinSkim@3
displayName: Run BinSkim
inputs:
diff --git a/.azure-pipelines/util/live-test-steps.yml b/.azure-pipelines/util/live-test-steps.yml
new file mode 100644
index 000000000000..22d211805e90
--- /dev/null
+++ b/.azure-pipelines/util/live-test-steps.yml
@@ -0,0 +1,111 @@
+parameters:
+- name: name
+- name: vmImage
+- name: psVersion
+- name: dotnetVersion
+
+jobs:
+- job: ${{ parameters.name }}
+ timeoutInMinutes: 180
+ pool:
+ vmImage: ${{ parameters.vmImage }}
+
+ steps:
+ - task: UseDotNet@2
+ condition: ne('${{ parameters.dotnetVersion }}', '')
+ displayName: Install desired .NET version ${{ parameters.dotnetVersion }}
+ inputs:
+ packageType: sdk
+ version: ${{ parameters.dotnetVersion }}
+
+ - task: PowerShell@2
+ displayName: Install desired Powershell version ${{ parameters.psVersion }}
+ inputs:
+ pwsh: true
+ targetType: filePath
+ filePath: ./tools/TestFx/Live/InitializeLiveTestEnvironment.ps1
+ arguments: -DesiredVersion ${{ parameters.psVersion }}
+
+ - task: PowerShell@2
+ displayName: Create live test data location directory
+ inputs:
+ pwsh: true
+ targetType: inline
+ script:
+ New-Item -Name $(LiveTestArtifactsName) -Path $(Pipeline.Workspace) -ItemType Directory -Force
+
+ - task: DownloadPipelineArtifact@2
+ condition: and(succeeded(), eq(variables['GalleryName'], 'DailyBuild'), eq(variables['BuildPipelineBuildId'], ''))
+ displayName: Download latest artifacts from daily build pipeline main branch
+ inputs:
+ buildType: specific
+ project: $(ProjectToDownloadArtifacts)
+ definition: $(BuildPipelineDefinitionId)
+ buildVersionToDownload: latestFromBranch
+ branchName: refs/heads/master
+ artifactName: $(ArtifactName)
+ targetPath: $(Pipeline.Workspace)
+
+ - task: DownloadPipelineArtifact@2
+ condition: and(succeeded(), eq(variables['GalleryName'], 'DailyBuild'), ne(variables['BuildPipelineBuildId'], ''))
+ displayName: Download specific artifacts from daily build pipeline
+ inputs:
+ buildType: specific
+ project: $(ProjectToDownloadArtifacts)
+ definition: $(BuildPipelineDefinitionId)
+ buildVersionToDownload: specific
+ pipelineId: $(BuildPipelineBuildId)
+ artifactName: $(ArtifactName)
+ targetPath: $(Pipeline.Workspace)
+
+ - task: PowerShell@2
+ condition: and(succeeded(), eq(variables['GalleryName'], 'DailyBuild'))
+ displayName: Copy artifacts to local repository
+ inputs:
+ pwsh: true
+ targetType: inline
+ script: |
+ $azPackagesDir = New-Item -Name AzPackages -Path $(LiveTestDataLocation) -ItemType Directory -Force
+ $azPackagesFiles = Join-Path -Path $(Pipeline.Workspace) -ChildPath *.nupkg
+ Move-Item -Path $azPackagesFiles -Destination $azPackagesDir
+ Get-ChildItem -LiteralPath $azPackagesDir
+
+ - task: PowerShell@2
+ displayName: Install desired Az module from $(GalleryName)
+ inputs:
+ pwsh: true
+ targetType: filePath
+ filePath: ./tools/TestFx/Live/InvokeLiveTestCITask.ps1
+ arguments: -UseWindowsPowerShell ('${{ parameters.psVersion }}' -eq '5.1') -ScriptFile './tools/TestFx/Live/InstallLiveTestAzModules.ps1 -Source $(GalleryName) -AzPackagesLocation (Convert-Path -LiteralPath $(LiveTestDataLocation) | Join-Path -ChildPath AzPackages)'
+
+ - task: PowerShell@2
+ displayName: Connect Azure with live test service principal
+ inputs:
+ pwsh: true
+ targetType: filePath
+ filePath: ./tools/TestFx/Live/InvokeLiveTestCITask.ps1
+ arguments: -UseWindowsPowerShell ('${{ parameters.psVersion }}' -eq '5.1') -ScriptFile './tools/TestFx/Live/ConnectLiveTestServicePrincipal.ps1 $(LiveTestServicePrincipalSubscriptionId) $(LiveTestServicePrincipalTenantId) $(LiveTestServicePrincipalId) $(LiveTestServicePrincipalSecret)'
+
+ - task: PowerShell@2
+ displayName: Run top E2E live scenarios
+ inputs:
+ pwsh: true
+ targetType: filePath
+ filePath: ./tools/TestFx/Live/InvokeLiveTestCITask.ps1
+ arguments: -UseWindowsPowerShell ('${{ parameters.psVersion }}' -eq '5.1') -ScriptFile './tools/TestFx/Live/InvokeLiveTestScenarios.ps1 $(Build.BuildId) ${{ parameters.vmImage }} ${{ parameters.psVersion }} $(Build.SourcesDirectory) $(LiveTestDataLocation)'
+ failOnStderr: true
+
+ - task: PowerShell@2
+ displayName: Save live test results to Kusto
+ inputs:
+ pwsh: true
+ targetType: filePath
+ filePath: ./tools/TestFx/Live/SaveLiveTestResult.ps1
+ arguments: $(KustoServicePrincipalTenantId) $(KustoServicePrincipalId) $(KustoServicePrincipalSecret) $(KustoClusterName) $(KustoClusterRegion) $(LiveTestDatabaseName) $(LiveTestTableName) $(TestCoverageTableName) $(LiveTestDataLocation)
+
+ - task: PublishPipelineArtifact@1
+ displayName: Publish live test results to pipeline artifact
+ inputs:
+ artifact: livetest-os-${{ parameters.vmImage }}-powershell-${{ parameters.psVersion }}
+ targetPath: $(LiveTestDataLocation)
+ condition: always()
diff --git a/build.proj b/build.proj
index 189960e55d9a..e14d0def7ede 100644
--- a/build.proj
+++ b/build.proj
@@ -74,9 +74,12 @@
$(RepoRoot)docker
$(RepoTools)Docker
azure-powershell
-
-
+
+
true
+
+
+ false
@@ -194,9 +197,9 @@
build
publish
-
-
-
+
+
+
diff --git a/src/lib/netcoreapp2.1/Microsoft.Identity.Client.dll b/src/lib/netcoreapp2.1/Microsoft.Identity.Client.dll
index 083d76fc19ac..7e98f30fc54a 100644
Binary files a/src/lib/netcoreapp2.1/Microsoft.Identity.Client.dll and b/src/lib/netcoreapp2.1/Microsoft.Identity.Client.dll differ
diff --git a/src/lib/netfx/Microsoft.Identity.Client.dll b/src/lib/netfx/Microsoft.Identity.Client.dll
index d39e9891a8fc..2a1b17bc86a4 100644
Binary files a/src/lib/netfx/Microsoft.Identity.Client.dll and b/src/lib/netfx/Microsoft.Identity.Client.dll differ
diff --git a/src/lib/netstandard2.0/Azure.Identity.BrokeredAuthentication.dll b/src/lib/netstandard2.0/Azure.Identity.BrokeredAuthentication.dll
new file mode 100644
index 000000000000..4b4b2f2b663d
Binary files /dev/null and b/src/lib/netstandard2.0/Azure.Identity.BrokeredAuthentication.dll differ
diff --git a/src/lib/netstandard2.0/Microsoft.Identity.Client.Broker.dll b/src/lib/netstandard2.0/Microsoft.Identity.Client.Broker.dll
new file mode 100644
index 000000000000..3e0a147d4bcb
Binary files /dev/null and b/src/lib/netstandard2.0/Microsoft.Identity.Client.Broker.dll differ
diff --git a/src/lib/netstandard2.0/Microsoft.Identity.Client.NativeInterop.dll b/src/lib/netstandard2.0/Microsoft.Identity.Client.NativeInterop.dll
new file mode 100644
index 000000000000..a7d555909366
Binary files /dev/null and b/src/lib/netstandard2.0/Microsoft.Identity.Client.NativeInterop.dll differ
diff --git a/src/lib/netstandard2.0/msalruntime.dll b/src/lib/netstandard2.0/msalruntime.dll
new file mode 100644
index 000000000000..70162a8713a2
Binary files /dev/null and b/src/lib/netstandard2.0/msalruntime.dll differ
diff --git a/src/lib/netstandard2.0/msalruntime_x86.dll b/src/lib/netstandard2.0/msalruntime_x86.dll
new file mode 100644
index 000000000000..24735b8531b8
Binary files /dev/null and b/src/lib/netstandard2.0/msalruntime_x86.dll differ
diff --git a/src/lib/pdb/CopyPdbToArtifacts.ps1 b/src/lib/pdb/CopyPdbToArtifacts.ps1
new file mode 100644
index 000000000000..e171ffaf5a6b
--- /dev/null
+++ b/src/lib/pdb/CopyPdbToArtifacts.ps1
@@ -0,0 +1,20 @@
+# BinSkim, one step in static analysis, requires PDB to analyze assemblies.
+# In most cases it can find them without extra configuration.
+# However for special cases, we need to copy the PDB to the same folder as the assemblies so that BinSkim can find them,,
+# and that is the purpose of this script.
+
+Param(
+ [string]$Configuration = "Debug"
+)
+
+$PathMappings = @{
+ 'msalruntime.pdb' = 'Az.Accounts/lib/netstandard2.0'
+ 'msalruntime_x86.pdb' = 'Az.Accounts/lib/netstandard2.0'
+}
+
+$ArtifactsPath = [System.IO.Path]::Combine($PSScriptRoot, "../../../artifacts", $Configuration)
+$PathMappings.Keys | ForEach-Object {
+ $Source = [System.IO.Path]::GetFullPath("$PSScriptRoot/$_")
+ $Destination = [System.IO.Path]::Combine($ArtifactsPath, $PathMappings[$_])
+ Copy-Item -Path $Source -Destination $Destination
+}
diff --git a/src/lib/pdb/README.md b/src/lib/pdb/README.md
new file mode 100644
index 000000000000..90f89a9024cc
--- /dev/null
+++ b/src/lib/pdb/README.md
@@ -0,0 +1,25 @@
+## What is this directory for
+
+In the [security tools pipeline](../../../.azure-pipelines/security-tools.yml), one step called BinSkim would scan all of the assemblies and executables in the artifacts. When scanning assemblies, it requires the corresponding Program Database (PDB) files. Most cases BinSkim is smart enough to find them, for example by downloading the symbol package from nuget.org. However if it fails to do so, you could get an [`E_PDB_NOT_FOUND`](https://github.com/microsoft/binskim/blob/7b64cf4ff69d2c6d8c4945be821d361b24e2169f/docs/RulesAndErrorsTroubleshootingGuide.md#resolving-e_pdb_not_found) error.
+
+The solution is to grab the PDB file elsewhere (maybe by asking the developers), and then put them next to the assemblies. But keep in mind that we don't want to ship them to the end user because they are useless at runtime and they are big.
+
+This directory serves as an E2E solution. You put the PDB files here, tell the script where their corresponding assemblies are, and the script will copy them to the right place before the BinSkim scan.
+
+## How to add a new PDB file
+
+1. Put the PDB file in `src/lib/pdb`.
+2. Update [`CopyPdbToArtifacts.ps1`](./CopyPdbToArtifacts.ps1), in the hashtable `$PathMappings`, add a new entry of the PDB's name and its destination, i.e. where the corresponding .dll file lies in artifacts.
+3. Check in and push your code. Note that PDB files are ignored by `.gitignore`. You need to explicitly add them by `git add -f path/to/*.pdb`.## What is lib/pdb for
+
+In the [security tools pipeline](../../../.azure-pipelines/security-tools.yml), one step called BinSkim would scan all of the assemblies and executables in the artifacts. When scanning assemblies, it requires the corresponding Program Database (PDB) files. Most cases BinSkim is smart enough to find them, for example by downloading the symbol package from nuget.org. However if it fails to do so, you could get an [`E_PDB_NOT_FOUND`](https://github.com/microsoft/binskim/blob/7b64cf4ff69d2c6d8c4945be821d361b24e2169f/docs/RulesAndErrorsTroubleshootingGuide.md#resolving-e_pdb_not_found) error.
+
+The solution is to grab the PDB file elsewhere (maybe by asking the developers), and then put them next to the assemblies. But keep in mind that we don't want to ship them to the end user because they are useless at runtime and they are big.
+
+This directory serves as an E2E solution. You put the PDB files here, tell the script where their corresponding assemblies are, and the script will copy them to the right place before the BinSkim scan.
+
+## How to add a new PDB file
+
+1. Put the PDB file in `src/lib/pdb`.
+2. Update [`CopyPdbToArtifacts.ps1`](./CopyPdbToArtifacts.ps1), in the hashtable `$PathMappings`, add a new entry of the PDB's name and its destination, i.e. where the corresponding .dll file lies in artifacts.
+3. Check in and push your code. Note that PDB files are ignored by `.gitignore`. You need to explicitly add them by `git add -f path/to/*.pdb`.
diff --git a/src/lib/pdb/msalruntime.pdb b/src/lib/pdb/msalruntime.pdb
new file mode 100644
index 000000000000..a39b1445a807
Binary files /dev/null and b/src/lib/pdb/msalruntime.pdb differ
diff --git a/src/lib/pdb/msalruntime_x86.pdb b/src/lib/pdb/msalruntime_x86.pdb
new file mode 100644
index 000000000000..71becbd12667
Binary files /dev/null and b/src/lib/pdb/msalruntime_x86.pdb differ
diff --git a/src/shared/ConfigKeys.cs b/src/shared/ConfigKeys.cs
index a444ecd45472..5a145af5ef9d 100644
--- a/src/shared/ConfigKeys.cs
+++ b/src/shared/ConfigKeys.cs
@@ -29,6 +29,7 @@ internal static class ConfigKeys
public const string DefaultSubscriptionForLogin = "DefaultSubscriptionForLogin";
public const string EnableDataCollection = "EnableDataCollection";
public const string EnableTestCoverage = "EnableTestCoverage";
+ public const string EnableLoginByWam = "EnableLoginByWam";
public const string TestCoverageLocation = "TestCoverageLocation";
}
}
diff --git a/tools/Az.Tools.Installer/Az.Tools.Installer.psd1 b/tools/Az.Tools.Installer/Az.Tools.Installer.psd1
index 0e5591b761b4..4c7b07ea828d 100644
--- a/tools/Az.Tools.Installer/Az.Tools.Installer.psd1
+++ b/tools/Az.Tools.Installer/Az.Tools.Installer.psd1
@@ -12,7 +12,7 @@
RootModule = 'Az.Tools.Installer.psm1'
# Version number of this module.
- ModuleVersion = '0.2.0'
+ ModuleVersion = '0.2.1'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -109,11 +109,9 @@
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Supported installing from a path of nuget package
- * Supported installing Az sub modules using minimum required Az.Accounts version
- * Supported uninstalling by module name filter and whether in preview
- * Provided progress bar to show the cmdlet execution status
- * Optimized the performance of Az.Tools.Installer'
+ ReleaseNotes = '* Fixed the issue of installation and updating when Repository is not provided (#20209)
+ * Updated telemetry assembly to 2.13.1
+ * Fixed typo in Az.Tools.Installer (#20055)'
# Prerelease string of this module
# Prerelease = ''
diff --git a/tools/Az.Tools.Installer/Az.Tools.Installer.psm1 b/tools/Az.Tools.Installer/Az.Tools.Installer.psm1
index 724973be52da..49d5cd2bc3ad 100644
--- a/tools/Az.Tools.Installer/Az.Tools.Installer.psm1
+++ b/tools/Az.Tools.Installer/Az.Tools.Installer.psm1
@@ -356,7 +356,7 @@ function Get-AzModuleFromRemote {
$modulesWithVersion = @()
$containValidModule = if ($Name) {$Name -Contains 'Az.Accounts'} else {$false}
$module = $null
- foreach($module in $modules.Dependencies) {
+ foreach ($module in $modules.Dependencies) {
if ($module.Name -eq 'Az.Accounts') {
if ($UseExactAccountVersion) {
$version = $accountVersion
@@ -400,7 +400,7 @@ function Remove-AzureRM {
process {
try {
$azureModuleNames = (Get-InstalledModule -Name Azure* -ErrorAction Stop).Name | Where-Object {$_ -match "Azure(\.[a-zA-Z0-9]+)?" -or $_ -match "AzureRM(\.[a-zA-Z0-9]+)?"}
- foreach($moduleName in $azureModuleNames) {
+ foreach ($moduleName in $azureModuleNames) {
PowerShellGet\Uninstall-Module -Name $moduleName -AllVersion -AllowPrerelease -ErrorAction Continue
}
}
@@ -427,7 +427,7 @@ $exportedFunctions = @( Get-ChildItem -Path $PSScriptRoot/exports/*.ps1 -Recurse
$internalFunctions = @( Get-ChildItem -Path $PSScriptRoot/internal/*.ps1 -ErrorAction SilentlyContinue )
$allFunctions = $internalFunctions + $exportedFunctions
-foreach($function in $allFunctions) {
+foreach ($function in $allFunctions) {
try {
. $function.Fullname
}
diff --git a/tools/Az.Tools.Installer/ChangeLog.md b/tools/Az.Tools.Installer/ChangeLog.md
index f447b2cd3ec1..e886f1c6795a 100644
--- a/tools/Az.Tools.Installer/ChangeLog.md
+++ b/tools/Az.Tools.Installer/ChangeLog.md
@@ -1,6 +1,8 @@
## Upcoming Release
+## 0.2.1
+* Fixed the issue of installation and updating when Repository is not provided (#20209)
* Updated telemetry assembly to 2.13.1
-* Fixed typo in Az.Tools.Installer
+* Fixed typo in Az.Tools.Installer (#20055)
## 0.2.0
* Az.Tools.Installer version 2 (#16321)
diff --git a/tools/Az.Tools.Installer/exports/Uninstall-AzModule.ps1 b/tools/Az.Tools.Installer/exports/Uninstall-AzModule.ps1
index eb34b047a925..272e9fda81bf 100644
--- a/tools/Az.Tools.Installer/exports/Uninstall-AzModule.ps1
+++ b/tools/Az.Tools.Installer/exports/Uninstall-AzModule.ps1
@@ -125,7 +125,7 @@ function Uninstall-AzModule {
"$_"
}
}
- foreach($versionString in $versionStrings) {
+ foreach ($versionString in $versionStrings) {
PowerShellGet\Uninstall-Module -Name $moduleName -RequiredVersion $versionString -AllowPrerelease -ErrorAction 'Continue'
}
}
diff --git a/tools/Az.Tools.Installer/exports/Update-AzModule.ps1 b/tools/Az.Tools.Installer/exports/Update-AzModule.ps1
index 827d6aad7222..43ef413410f5 100644
--- a/tools/Az.Tools.Installer/exports/Update-AzModule.ps1
+++ b/tools/Az.Tools.Installer/exports/Update-AzModule.ps1
@@ -91,7 +91,10 @@ function Update-AzModule {
$findModuleParams.Add('Repository', $Repository)
}
$modulesToUpdate = Get-AzModuleFromRemote @findModuleParams
- $Repository = $modulesToUpdate.Repository | Select-Object -First 1
+ if ($modulesToUpdate) {
+ $Repository = $modulesToUpdate.Repository | Select-Object -First 1
+ }
+
$moduleUpdateTable = $modulesToUpdate | Foreach-Object { [PSCustomObject]@{
Name = $_.Name
VersionBeforeUpdate = [Version] ($groupSet[$_.Name] | Select-Object -First 1)
@@ -120,7 +123,7 @@ function Update-AzModule {
if ($WhatIfPreference) {
$module = $null
- foreach($module in $moduleUpdateTable) {
+ foreach ($module in $moduleUpdateTable) {
Write-Host "WhatIf: Will update $($module.Name) from $($module.VersionBeforeUpdate) to $($module.VersionUpdate)."
}
}
diff --git a/tools/Az.Tools.Installer/internal/Install-AzModuleInternal.ps1 b/tools/Az.Tools.Installer/internal/Install-AzModuleInternal.ps1
index f527e079c580..acf08570697f 100644
--- a/tools/Az.Tools.Installer/internal/Install-AzModuleInternal.ps1
+++ b/tools/Az.Tools.Installer/internal/Install-AzModuleInternal.ps1
@@ -86,7 +86,7 @@ function Install-AzModuleInternal {
}
$downloader.WaitForAllTasks()
$file = $null
- foreach($file in $fileList) {
+ foreach ($file in $fileList) {
if (!(Test-Path -Path $file.Path)) {
Throw "[$Invoker] Fail to download $($file.Name) to $tempRepo. Please check your network connection and retry."
}
diff --git a/tools/Az.Tools.Installer/internal/Install-AzModule_Default.ps1 b/tools/Az.Tools.Installer/internal/Install-AzModule_Default.ps1
index 435edf4f429c..a2e941758505 100644
--- a/tools/Az.Tools.Installer/internal/Install-AzModule_Default.ps1
+++ b/tools/Az.Tools.Installer/internal/Install-AzModule_Default.ps1
@@ -80,12 +80,15 @@ function Install-AzModule_Default {
$modules = @()
$modules += Get-AzModuleFromRemote @findModuleParams | Sort-Object -Property Name
- $Repository = $modules.Repository | Select-Object -First 1
+ if ($modules) {
+ $Repository = $modules.Repository | Select-Object -First 1
+ }
if($Name) {
$moduleExcluded = $Name | Where-Object {!$modules -or $modules.Name -NotContains $_}
if ($moduleExcluded) {
$azVersion = if ($RequiredAzVersion) {$RequiredAzVersion} else {"Latest"}
+ $Repository = if ($Repository) {$Repository} else {'the registered repositories'}
Write-Error "[$Invoker] The following specified modules:$moduleExcluded cannot be found in $Repository with the $azVersion version."
}
}
diff --git a/tools/Az.Tools.Installer/test/Install-AzModule.Tests.ps1 b/tools/Az.Tools.Installer/test/Install-AzModule.Tests.ps1
index decdefabf378..06dc2305441f 100644
--- a/tools/Az.Tools.Installer/test/Install-AzModule.Tests.ps1
+++ b/tools/Az.Tools.Installer/test/Install-AzModule.Tests.ps1
@@ -26,7 +26,7 @@ Describe 'Install-AzModule' {
$modules.Name | Should -Contain 'Az.Storage'
$modules.Name | Should -Contain 'Az.Network'
$modules.Name | Should -Contain 'Az.Compute'
- $modules.Name | Should -Contain 'Az.KeyVault'
+ $modules.Name | Should -Contain 'Az.KeyVault'
}
It 'InstallByNamePrerelease' {
@@ -34,7 +34,7 @@ Describe 'Install-AzModule' {
$output.Count | Should -Be 5
$modules = Get-AzSubModule
$modules.Count | Should -Be 5
- $modules.Name | Should -Contain 'Az.Accounts'
+ $modules.Name | Should -Contain 'Az.Accounts'
$modules.Name | Should -Contain 'Az.Storage'
$modules.Name | Should -Contain 'Az.Network'
$modules.Name | Should -Contain 'Az.Maps'
@@ -44,12 +44,12 @@ Describe 'Install-AzModule' {
$output.Count | Should -Be 4
$modules = Get-AzSubModule
$modules.Count | Should -Be 6
- $modules.Name | Should -Contain 'Az.Accounts'
+ $modules.Name | Should -Contain 'Az.Accounts'
$modules.Name | Should -Contain 'Az.Storage'
$modules.Name | Should -Contain 'Az.Network'
$modules.Name | Should -Contain 'Az.Maps'
$modules.Name | Should -Contain 'Az.KeyVault'
- $modules.Name | Should -Contain 'Az.Resources'
+ $modules.Name | Should -Contain 'Az.Resources'
}
It 'InstallByNameLatest' {
@@ -105,7 +105,35 @@ Describe 'Install-AzModule' {
$modules.Name | Should -Contain 'Az.Storage'
}
+ It 'InstallWithoutRepository' {
+ $repos = [Array](Get-PSRepository | Where-Object {$_.Name -ne 'PSGallery'})
+ if ($repos -ne $null) {
+ $repos | Unregister-PSRepository
+ }
+ try {
+ $output = Install-AzModule -Name storage,neTwork -RequiredAzVersion 6.3 -Scope 'CurrentUser'
+ $output.Count | Should -Be 3
+ $modules = Get-AzSubModule
+ $modules.Count | Should -Be 3
+ $modules.Name | Should -Contain 'Az.Accounts'
+ $modules.Name | Should -Contain 'Az.Storage'
+ $modules.Name | Should -Contain 'Az.Network'
+ }
+ finally {
+ foreach ($repo in $repos) {
+ if ($repo.Name -ne 'PSGallery') {
+ $parameters = @{
+ Name = $repo.Name
+ SourceLocation = $repo.SourceLocation
+ InstallationPolicy = $repo.InstallationPolicy
+ }
+ Register-PSRepository @parameters
+ }
+ }
+ }
+ }
+
AfterEach {
- Remove-AllAzModule
+ Remove-AllAzModule
}
-}
\ No newline at end of file
+}
diff --git a/tools/Az.Tools.Installer/test/Update-AzModule.Tests.ps1 b/tools/Az.Tools.Installer/test/Update-AzModule.Tests.ps1
index d755958f8f01..0e35ad5371bd 100644
--- a/tools/Az.Tools.Installer/test/Update-AzModule.Tests.ps1
+++ b/tools/Az.Tools.Installer/test/Update-AzModule.Tests.ps1
@@ -59,7 +59,7 @@ Describe 'Update-AzModule' {
$modules.Name | Should -Contain 'Az.Network'
$modules.Name | Should -Contain 'Az.Storage'
- foreach($module in $output) {
+ foreach ($module in $output) {
(Find-Module -Name $module.Name -Repository PSGallery).Version | Should -Be $module.VersionUpdate
}
}
@@ -84,6 +84,29 @@ Describe 'Update-AzModule' {
$output.Count | Should -Be 1
}
+ It 'UpdateWithoutRepository' {
+ $repos = [Array](Get-PSRepository | Where-Object {$_.Name -ne 'PSGallery'})
+ if ($repos -ne $null) {
+ $repos | Unregister-PSRepository
+ }
+ try {
+ $output = Update-AzModule -Name storage -Scope 'CurrentUser'
+ $output.Count | Should -Be 2
+ }
+ finally {
+ foreach ($repo in $repos) {
+ if ($repo.Name -ne 'PSGallery') {
+ $parameters = @{
+ Name = $repo.Name
+ SourceLocation = $repo.SourceLocation
+ InstallationPolicy = $repo.InstallationPolicy
+ }
+ Register-PSRepository @parameters
+ }
+ }
+ }
+ }
+
AfterEach {
Remove-AllAzModule
}
diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1
index 769f15b89636..ea1a4648c898 100644
--- a/tools/Az/Az.psd1
+++ b/tools/Az/Az.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 01/12/2022
+# Generated on: 1/6/2023
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '9.2.0'
+ModuleVersion = '9.3.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -52,24 +52,24 @@ 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.10.4'; },
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.0'; },
@{ModuleName = 'Az.Advisor'; RequiredVersion = '2.0.0'; },
- @{ModuleName = 'Az.Aks'; RequiredVersion = '5.1.0'; },
+ @{ModuleName = 'Az.Aks'; RequiredVersion = '5.2.0'; },
@{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; },
- @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '4.0.1'; },
+ @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '4.0.2'; },
@{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '1.2.0'; },
- @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.2.0'; },
+ @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.2.1'; },
@{ModuleName = 'Az.Attestation'; RequiredVersion = '2.0.0'; },
- @{ModuleName = 'Az.Automation'; RequiredVersion = '1.8.0'; },
- @{ModuleName = 'Az.Batch'; RequiredVersion = '3.2.1'; },
+ @{ModuleName = 'Az.Automation'; RequiredVersion = '1.9.0'; },
+ @{ModuleName = 'Az.Batch'; RequiredVersion = '3.3.0'; },
@{ModuleName = 'Az.Billing'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.Cdn'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.CloudService'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.12.0'; },
- @{ModuleName = 'Az.Compute'; RequiredVersion = '5.2.0'; },
+ @{ModuleName = 'Az.Compute'; RequiredVersion = '5.3.0'; },
@{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '3.1.0'; },
- @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '3.0.0'; },
+ @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '3.0.1'; },
@{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.9.0'; },
@{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Databricks'; RequiredVersion = '1.4.0'; },
@@ -99,9 +99,9 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.Migrate'; RequiredVersion = '2.1.0'; },
- @{ModuleName = 'Az.Monitor'; RequiredVersion = '4.3.0'; },
+ @{ModuleName = 'Az.Monitor'; RequiredVersion = '4.4.0'; },
@{ModuleName = 'Az.MySql'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.Network'; RequiredVersion = '5.2.0'; },
+ @{ModuleName = 'Az.Network'; RequiredVersion = '5.3.0'; },
@{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '3.2.0'; },
@{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.5.1'; },
@@ -109,26 +109,26 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.2.0'; },
@{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '6.1.2'; },
- @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.6.0'; },
+ @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.7.0'; },
@{ModuleName = 'Az.RedisEnterpriseCache'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.ResourceMover'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Resources'; RequiredVersion = '6.5.1'; },
@{ModuleName = 'Az.Security'; RequiredVersion = '1.3.0'; },
- @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.0.0'; },
+ @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.0.1'; },
@{ModuleName = 'Az.ServiceBus'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.SignalR'; RequiredVersion = '1.5.0'; },
- @{ModuleName = 'Az.Sql'; RequiredVersion = '4.1.0'; },
+ @{ModuleName = 'Az.Sql'; RequiredVersion = '4.2.0'; },
@{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.StackHCI'; RequiredVersion = '1.4.1'; },
- @{ModuleName = 'Az.Storage'; RequiredVersion = '5.2.0'; },
+ @{ModuleName = 'Az.Storage'; RequiredVersion = '5.3.0'; },
@{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.7.0'; },
@{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.Support'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.Synapse'; RequiredVersion = '2.2.0'; },
@{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.Websites'; RequiredVersion = '2.12.0'; })
+ @{ModuleName = 'Az.Websites'; RequiredVersion = '2.12.1'; })
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
@@ -184,107 +184,95 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '9.2.0 - December 2022
+ ReleaseNotes = '9.3.0 - January 2023
Az.Accounts
-* Enabled caching tokens when logging in with a client assertion. This fixed the incorrectly short lifespan of tokens.
-* Upgraded target framework of Microsoft.Identity.Client to net461 [#20189]
-* Stored ''ServicePrincipalSecret'' and ''CertificatePassword'' into ''AzKeyStore''.
-* Updated the reference of Azure PowerShell Common to 1.3.67-preview.
+* Supported Web Account Manager (WAM) as an opt-in interactive login experience. Enable it by ''Update-AzConfig -EnableLoginByWam True''.
+* Optimized the mechanism for assembly loading.
+* Enabled AzKeyStore with keyring in Linux.
+* Fixed a typo in GetAzureRmContextAutosaveSetting.cs changing the cmdlet class name to GetAzureRmContextAutosaveSetting
+* Removed survey on error message in ''Resolve-AzError''. [#20398]
Az.Aks
-* Bumped API version to 2022-09-01
-* Added parameter ''-NodeOsSKU'' for ''New-AzAksCluster'' and parameter ''-OsSKU'' for ''New-AzAksNodePool''
-* Added parameter ''-Mode'' for ''New-AzAksNodePool'' and ''Update-AzAksNodePool''
-* Added property ''-NodeImageVersion'' for the output of ''Get-AzAksNodePool''[#19893]
-* Added parameter ''-NodePoolLabel'' for ''Set-AzAksCluster'', ''-NodeLabel'' for ''New-AzAksNodePool'' and ''Update-AzAksNodePool''
-* Added parameter ''-NodePoolTag'' for ''New-AzAksCluster'' and ''Set-AzAksCluster'', ''-Tag'' for ''New-AzAksNodePool'' and ''Update-AzAksNodePool''
+* Added parameter ''-EnableEncryptionAtHost'' for ''New-AzAksCluster'' and ''New-AzAksNodePool''
+* Added parameter ''-EnableUltraSSD'' for ''New-AzAksCluster'' and ''New-AzAksNodePool''
+* Added parameter ''-NodeKubeletConfig'' for ''New-AzAksCluster'', ''-KubeletConfig'' for ''New-AzAksNodePool''
+* Added parameter ''-NodeLinuxOSConfig'' for ''New-AzAksCluster'', ''-LinuxOSConfig'' and ''New-AzAksNodePool''
+* Added parameter ''-NodeMaxSurge'' for ''New-AzAksCluster'', ''-MaxSurge'' for ''New-AzAksNodePool'' and ''Update-AzAksNodePool''
+* Added parameter ''-PPG'' for ''New-AzAksCluster'' and ''New-AzAksNodePool''
+* Added parameter ''-SpotMaxPrice'' for ''New-AzAksNodePool''
+* Added parameter ''-EnableFIPS'' for ''New-AzAksCluster'' and ''New-AzAksNodePool''
+* Added parameter ''-AutoScalerProfile'' for ''New-AzAksCluster'' and ''Set-AzAksCluster''
+* Added parameter ''-GpuInstanceProfile'' for ''New-AzAksCluster'' and ''New-AzAksNodePool''
+* Added parameter ''-EnableUptimeSLA'' for ''New-AzAksCluster'' and ''Set-AzAksCluster''
+* Added parameter ''-EdgeZone'' for ''New-AzAksCluster''
+
+Az.ApiManagement
+* Updated description of ResourceId param ''New-AzApiManagementBackend'' and ''Set-AzApiManagementBackend'' cmdlet [#16868]
Az.ApplicationInsights
-* Supported Workbook function. Below is the new cmdlet
- * ''Get-AzApplicationInsightsMyWorkbook''
- * ''Get-AzApplicationInsightsWorkbook''
- * ''Get-AzApplicationInsightsWorkbookRevision''
- * ''Get-AzApplicationInsightsWorkbookTemplate''
- * ''New-AzApplicationInsightsMyWorkbook''
- * ''New-AzApplicationInsightsWorkbook''
- * ''New-AzApplicationInsightsWorkbookTemplate''
- * ''New-AzApplicationInsightsWorkbookTemplateGalleryObject''
- * ''Remove-AzApplicationInsightsMyWorkbook''
- * ''Remove-AzApplicationInsightsWorkbook''
- * ''Remove-AzApplicationInsightsWorkbookTemplate''
- * ''Update-AzApplicationInsightsMyWorkbook''
- * ''Update-AzApplicationInsightsWorkbook''
- * ''Update-AzApplicationInsightsWorkbookTemplate''
+* Enabled output object enumerating for ''Get-AzApplicationInsights'' [#20225]
-Az.Compute
-* Fixed issue found for ''Set-AzVmssVMRunCommand'' [#19985]
-* Fixed ''Get-AzVm'' cmdlet when parameter ''-Status'' is provided, return property ''OsName'', ''OsVersion'' and ''HyperVGeneration''
-* Fixed ''New-AzVM'' cmdlet when creating VM with bootdiagnostic storage causes exception ''Kind'' cannot be null.
-
-Az.CosmosDB
-* Added support for Cosmos DB Service related cmdlets.
-
-Az.DataFactory
-* Updated ADF .Net SDK version to 8.0.0
+Az.Automation
+* Updated Example: Start-AzAutomationRunbook should pass ordered dictionary for parameters [#20408]
-Az.DataProtection
-* Fixed spacing issues in Set-AzDataProtectionMSIPermission.ps1
+Az.Batch
+* Added new properties ''CurrentNodeCommunicationMode'' (read only) and ''TargetCommunicationMode'' of type ''NodeCommunicationMode'' to ''PSCloudPool''.
+ - Valid values for ''NodeCommunicationMode'': Default, Classic, Simplified
+ - When the ''PSCloudPool'' is updated with a new ''TargetCommunicationMode'' value, the Batch service will attempt to update the pool to the new value the next time the pool is resized down to zero compute nodes and back up.
+* ''PSPrivateLinkServiceConnectionState''''s ''ActionRequired'' property required has been renamed to ''ActionsRequired''. The old property has been marked as obsolete, and now just returns the new property. This should not impact existing consumers.
-Az.EventHub
-* Added NamespaceV2 cmdlets for EventHub
+Az.Compute
+* Removed the image ''Win2008R2SP1'' from the list of available images and documentation. This image is no longer available on the backend so the client tools need to sync to that change.
+* Fixed a bug for creating Linux VM''s from SIG/Community Gallery Images
+* Added ''ImageReferenceId'' string parameter to the ''New-AzVmssConfig'' cmdlet. This allows gallery image references to be added for the Confidential VM feature.
+* Added ''SecurityEncryptionType'' and ''SecureVMDiskEncryptionSet'' string parameters to the ''Set-AzVmssStorageProfile'' cmdlet for the Confidential VM feature.
-Az.KeyVault
-* Fixed certificate export parameter issue in ''Add-AzKeyVaultKey'' [#19623]
-* Fixed CertificateString decoding issue in ''Import-AzKeyVaultCertificate''
-* Shifted the location of key CVM release policy to GitHub [#19984]
-* Added fallback logic (reading default CVM policy from a local copy) if fetching default CVM Policy from GitHub failed.
+Az.ContainerRegistry
+* Fixed bug in ''Get-AzContainerRegistryTag'' to show correct tags [#20528]
Az.Monitor
-* Fixed bug for ''New-AzActivityLogAlert'' and ''Update-AzActivityLogAlert'' [#19927]
+* Fixed bug for ''Remove-AzDataCollectionRuleAssociation'' [#20207]
+* Added support for test notifications cmdlets
+ * ''Test-AzActionGroup''
+* Fixed start time parameter description of ''Get-AzActivityLog'' [#20409]
Az.Network
-* Added optional parameters ''CustomBlockResponseStatusCode'' and ''CustomBlockResponseBody'' parameter to ''AzApplicationGatewayFirewallPolicySettings''
-* Added a new cmdlet to get the application gateway waf manifest and rules
- - ''Get-AzApplicationGatewayWafDynamicManifest''
-
-Az.RecoveryServices
-* Added support for passing DiskEncryptionSetId for Cross region restore
-* Fixed the pagination bug in ''Get-AzRecoveryServicesAsrProtectableItem'' for the V2ARCM scenario.
-* Fixed ''IncludeDiskId'' property for ''New-ASRReplicationProtectedItem'' cmdlet of H2A
+* Added samples for retrieving Private Link IP Configuration using ''New-AzApplicationGatewayPrivateLinkIpConfiguration'' with fix [#20440]
+* Added ''DdosProtectionPlan'' property in ''AzPublicIpAddress''
+* Updated mapping in ''AzPublicIpAddress'' to always show/create DdosSettings
+* Fixed a bug that added Ddos related properties when viewing PublicIpAddress and DdosProtectionPlan objects
+* Fixed a Bug for Set-AzIpGroup cmdlet to support the ''-WhatIf'' parameter
+* Fixed a Bug for ''Add-AzLoadBalancerFrontendIpConfig'', ''Add-AzLoadBalancerProbeConfig'', ''Add-AzLoadBalancerBackendAddressPoolConfig'', ''Set-AzLoadBalancer'', ''New-AzLoadBalancerRuleConfig'', ''Remove-AzLoadBalancerInboundNatRuleConfig'' cmdlets to support the ''-WhatIf'' parameter. [#20416]
+* Fixed a bug for DestinationPortBehavior in ''Get-AzNetworkWatcherConnectionMonitor'', ''New-AzNetworkWatcherConnectionMonitor'' powershell command by adding this properties to get and set the DestinationPortBehavior information. [#15996]
+
+Az.RedisCache
+* Added optional parameter ''PreferredDataArchiveAuthMethod'' in ''Export-AzRedisCache''
+* Added optional parameter ''PreferredDataArchiveAuthMethod'' in ''Import-AzRedisCache''
+* Added 4 additional properties for a geo replication link: ''PrimaryHostName'', ''GeoReplicatedPrimaryHostName'', ''ServerRole'', and ''LinkedRedisCacheLocation''in ''Get-AzRedisCacheLink'' and ''New-AzRedisCacheLink''
Az.Resources
-* Added cmdlet ''Get-AzADOrganization''
-* Fixed ''Set-AzPolicySetDefinition'' InternalServerError when the initiative is too large [#20238]
+* Fixed issue introduced in previous fix for ''Set-AzPolicySetDefinition'' InternalServerError when the initiative is too large [#20238], which will remove space in value.
+* Fixed ''Get-AzRoleAssignment'' BadRequest when scope is ''/'' [#20323]
-Az.ServiceBus
-* Added NamespaceV2 cmdlets for ServiceBus.
+Az.SecurityInsights
+* Fixed for ''Update-AzSentinelAlertRule'' fails when using ''-TriggerThreshold 0'' [#20417]
-Az.SignalR
-* Updated to API version 2022-08-01-preview
- - Added support for custom domain. Added new cmdlets New-AzWebPubSubCustomCertificate, Get-AzWebPubSubCustomCertificate, Remove-AzWebPubSubCustomCertificate, New-AzWebPubSubCustomDomain, Get-AzWebPubSubCustomDomain, Remove-AzWebPubSubCustomDomain.
- - Added support for event listeners in hub settings. Added new cmdlets New-AzWebPubSubEventHubEndpointObject, New-AzWebPubSubEventNameFilterObject.
+Az.Sql
+* Added a parameter named ''UseIdentity'' for ''Set-AzSqlServerAudit'', ''Set-AzSqlDatabaseAudit'', ''Set-AzSqlServerMSSupportAudit''
+* Added ''IsManagedIdentityInUse'' property to the output of ''Get-AzSqlServerMSSupportAudit''
+* Added ''PreferredEnclaveType'' parameter to ''New-AzSqlDatabase'', ''Get-AzSqlDatabase'' and ''Set-AzSqlDatabase'' cmdlet
Az.StackHCI
-* Enabled system-assigned identity on HCI cluster resource registration and repair registration flow.
-* Added error message in the command Register-AzStackHCI if Arc is not enabled.
-* Added default region confirmation prompt if the region is not mentioned in the command Register-AzStackHCI.
-* Added general logging improvements.
-* Added logic that skipping the Arc SPN permission check in Register-AzStackHCI if a customer doesn''t have the required permissions to read Arc SPN credential.
-* Added deprecation message for the command Test-AzStackHCIConnection. Customers can use Invoke-AzStackHciConnectivityValidation from the module AzStackHCI.EnvironmentChecker for connectivity verification tests.
+* Added support for arc extensions which depend on HCI cluster''s IMDS endpoints.
Az.Storage
-* Supported MaxPageSize, Include, and Filter parameters for listing encryption scopes
- - ''Get-AzStorageEncryptionScope''
-* Supported excludePrefix, includeDeleted, and many new schema fields in Blob Inventory
- - ''New-AzStorageBlobInventoryPolicyRule''
-
-Az.Synapse
-* Added breaking change message for ''-SparkConfigFilePath''. It will be deprecated around the middle of December.
-* Updated ''New-AzSynapseSparkPool'' and ''Update-AzSynapseSparkPool'' to support for setting spark pool configuration artifact by ''-SparkCongifuration''. ''-SparkCongifuration'' is an alternative of parameter ''-SparkConfigFilePath''.
+* Return ListBlobProperties in blob list result
+ - ''Get-AzStorageBlob''
+* Output AllowedCopyScope in get account result
+ - ''Get-AzStorageAccount''
Az.Websites
-* Added Tag parameter for ''New-AzWebApp'' and ''New-AzWebAppSlot''
-* Fixed ''Set-AzWebApp'' and ''Set-AZWebAppSlot'' to rethrow exception when Service Principal/User doesn''t have permission to list web app configuration. [#19942]
+* Fixed ''Import-AzWebAppKeyVaultCertificate'' to use certificate naming convention same as portal [#19592]
'
# Prerelease string of this module
diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1
index c89805a761b8..6159d59a0d5d 100644
--- a/tools/AzPreview/AzPreview.psd1
+++ b/tools/AzPreview/AzPreview.psd1
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '9.2.0'
+ModuleVersion = '9.3.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -52,37 +52,37 @@ 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.10.4'; },
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.0'; },
@{ModuleName = 'Az.ADDomainServices'; RequiredVersion = '0.2.0'; },
@{ModuleName = 'Az.Advisor'; RequiredVersion = '2.0.0'; },
- @{ModuleName = 'Az.Aks'; RequiredVersion = '5.1.0'; },
+ @{ModuleName = 'Az.Aks'; RequiredVersion = '5.2.0'; },
@{ModuleName = 'Az.AlertsManagement'; RequiredVersion = '0.5.0'; },
@{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.4'; },
- @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '4.0.1'; },
- @{ModuleName = 'Az.App'; RequiredVersion = '0.1.0'; },
+ @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '4.0.2'; },
+ @{ModuleName = 'Az.App'; RequiredVersion = '0.1.1'; },
@{ModuleName = 'Az.AppConfiguration'; RequiredVersion = '1.2.0'; },
- @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.2.0'; },
+ @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '2.2.1'; },
@{ModuleName = 'Az.Attestation'; RequiredVersion = '2.0.0'; },
@{ModuleName = 'Az.Automanage'; RequiredVersion = '0.1.0'; },
- @{ModuleName = 'Az.Automation'; RequiredVersion = '1.8.0'; },
+ @{ModuleName = 'Az.Automation'; RequiredVersion = '1.9.0'; },
@{ModuleName = 'Az.BareMetal'; RequiredVersion = '0.1.0'; },
- @{ModuleName = 'Az.Batch'; RequiredVersion = '3.2.1'; },
+ @{ModuleName = 'Az.Batch'; RequiredVersion = '3.3.0'; },
@{ModuleName = 'Az.Billing'; RequiredVersion = '2.0.0'; },
- @{ModuleName = 'Az.Blueprint'; RequiredVersion = '0.4.1'; },
+ @{ModuleName = 'Az.Blueprint'; RequiredVersion = '0.4.2'; },
@{ModuleName = 'Az.BotService'; RequiredVersion = '0.5.0'; },
@{ModuleName = 'Az.Cdn'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.ChangeAnalysis'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.CloudService'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.12.0'; },
@{ModuleName = 'Az.Communication'; RequiredVersion = '0.2.0'; },
- @{ModuleName = 'Az.Compute'; RequiredVersion = '5.2.0'; },
+ @{ModuleName = 'Az.Compute'; RequiredVersion = '5.3.0'; },
@{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.Confluent'; RequiredVersion = '0.2.0'; },
@{ModuleName = 'Az.ConnectedKubernetes'; RequiredVersion = '0.7.0'; },
@{ModuleName = 'Az.ConnectedMachine'; RequiredVersion = '0.4.1'; },
@{ModuleName = 'Az.ConnectedNetwork'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '3.1.0'; },
- @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '3.0.0'; },
+ @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '3.0.1'; },
@{ModuleName = 'Az.CosmosDB'; RequiredVersion = '1.9.0'; },
@{ModuleName = 'Az.CostManagement'; RequiredVersion = '0.3.0'; },
@{ModuleName = 'Az.CustomLocation'; RequiredVersion = '0.1.0'; },
@@ -105,7 +105,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.DeviceUpdate'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.DevSpaces'; RequiredVersion = '0.7.3'; },
@{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; },
- @{ModuleName = 'Az.DigitalTwins'; RequiredVersion = '0.1.0'; },
+ @{ModuleName = 'Az.DigitalTwins'; RequiredVersion = '0.2.0'; },
@{ModuleName = 'Az.DiskPool'; RequiredVersion = '0.3.0'; },
@{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; },
@{ModuleName = 'Az.DnsResolver'; RequiredVersion = '0.2.1'; },
@@ -147,11 +147,11 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.Migrate'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.MixedReality'; RequiredVersion = '0.2.0'; },
- @{ModuleName = 'Az.Monitor'; RequiredVersion = '4.3.0'; },
+ @{ModuleName = 'Az.Monitor'; RequiredVersion = '4.4.0'; },
@{ModuleName = 'Az.MonitoringSolutions'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.MySql'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.NetAppFiles'; RequiredVersion = '0.10.0'; },
- @{ModuleName = 'Az.Network'; RequiredVersion = '5.2.0'; },
+ @{ModuleName = 'Az.NetAppFiles'; RequiredVersion = '0.11.0'; },
+ @{ModuleName = 'Az.Network'; RequiredVersion = '5.3.0'; },
@{ModuleName = 'Az.NetworkFunction'; RequiredVersion = '0.1.2'; },
@{ModuleName = 'Az.Nginx'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; },
@@ -167,7 +167,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.Purview'; RequiredVersion = '0.2.0'; },
@{ModuleName = 'Az.Quota'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '6.1.2'; },
- @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.6.0'; },
+ @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.7.0'; },
@{ModuleName = 'Az.RedisEnterpriseCache'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.Reservations'; RequiredVersion = '0.11.0'; },
@@ -176,17 +176,17 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.Resources'; RequiredVersion = '6.5.1'; },
@{ModuleName = 'Az.Search'; RequiredVersion = '0.8.0'; },
@{ModuleName = 'Az.Security'; RequiredVersion = '1.3.0'; },
- @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.0.0'; },
+ @{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.0.1'; },
@{ModuleName = 'Az.ServiceBus'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.ServiceLinker'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.SignalR'; RequiredVersion = '1.5.0'; },
@{ModuleName = 'Az.SpringCloud'; RequiredVersion = '0.3.0'; },
- @{ModuleName = 'Az.Sql'; RequiredVersion = '4.1.0'; },
+ @{ModuleName = 'Az.Sql'; RequiredVersion = '4.2.0'; },
@{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Ssh'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.StackHCI'; RequiredVersion = '1.4.1'; },
- @{ModuleName = 'Az.Storage'; RequiredVersion = '5.2.0'; },
+ @{ModuleName = 'Az.Storage'; RequiredVersion = '5.3.0'; },
@{ModuleName = 'Az.StorageMover'; RequiredVersion = '0.1.0'; },
@{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.7.0'; },
@{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '2.0.0'; },
@@ -196,7 +196,8 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; },
@{ModuleName = 'Az.TimeSeriesInsights'; RequiredVersion = '0.2.0'; },
@{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.VMware'; RequiredVersion = '0.5.0'; },
- @{ModuleName = 'Az.Websites'; RequiredVersion = '2.12.0'; },
+ @{ModuleName = 'Az.VoiceServices'; RequiredVersion = '0.1.0'; },
+ @{ModuleName = 'Az.Websites'; RequiredVersion = '2.12.1'; },
@{ModuleName = 'Az.WindowsIotServices'; RequiredVersion = '0.1.0'; })
# Assemblies that must be loaded prior to importing this module
diff --git a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/Microsoft.Azure.Build.Tasks.Test.csproj b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/Microsoft.Azure.Build.Tasks.Test.csproj
index eb60c81ea609..e4b9edc21aee 100644
--- a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/Microsoft.Azure.Build.Tasks.Test.csproj
+++ b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/Microsoft.Azure.Build.Tasks.Test.csproj
@@ -33,10 +33,7 @@
4
-
- ..\..\..\src\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll
- True
-
+
diff --git a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/packages.config b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/packages.config
index 4d9b830384cd..abb80523829c 100644
--- a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/packages.config
+++ b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/Microsoft.Azure.Build.Tasks.csproj b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/Microsoft.Azure.Build.Tasks.csproj
index 780bef056ddb..9617295acc3d 100644
--- a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/Microsoft.Azure.Build.Tasks.csproj
+++ b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/Microsoft.Azure.Build.Tasks.csproj
@@ -22,7 +22,7 @@
-
+
diff --git a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/packages.config b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/packages.config
index 810e559c0449..1cad65933153 100644
--- a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/packages.config
+++ b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/packages.config
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets
index 0a6d42bd55ff..d5e37c89e432 100644
--- a/tools/Common.Netcore.Dependencies.targets
+++ b/tools/Common.Netcore.Dependencies.targets
@@ -3,22 +3,22 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -36,7 +36,7 @@
- $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.67-preview\tools\
+ $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.68-preview\tools\
diff --git a/tools/Docs/az-ps-latest.csv b/tools/Docs/az-ps-latest.csv
index e3fb93c2ea6d..f57b70603632 100644
--- a/tools/Docs/az-ps-latest.csv
+++ b/tools/Docs/az-ps-latest.csv
@@ -1,34 +1,34 @@
-pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.2.10.4.nupkg;sourceType=sa]Az.Accounts,2.10.4
+pac0,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Accounts.2.11.0.nupkg;sourceType=sa]Az.Accounts,2.11.0
pac1,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ADDomainServices.0.2.0.nupkg;sourceType=sa]Az.ADDomainServices,0.2.0
pac2,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Advisor.2.0.0.nupkg;sourceType=sa]Az.Advisor,2.0.0
-pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Aks.5.1.0.nupkg;sourceType=sa]Az.Aks,5.1.0
+pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Aks.5.2.0.nupkg;sourceType=sa]Az.Aks,5.2.0
pac4,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AlertsManagement.0.5.0.nupkg;sourceType=sa]Az.AlertsManagement,0.5.0
pac5,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AnalysisServices.1.1.4.nupkg;sourceType=sa]Az.AnalysisServices,1.1.4
-pac6,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ApiManagement.4.0.1.nupkg;sourceType=sa]Az.ApiManagement,4.0.1
-pac7,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.App.0.1.0.nupkg;sourceType=sa]Az.App,0.1.0
+pac6,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ApiManagement.4.0.2.nupkg;sourceType=sa]Az.ApiManagement,4.0.2
+pac7,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.App.0.1.1.nupkg;sourceType=sa]Az.App,0.1.1
pac8,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.AppConfiguration.1.2.0.nupkg;sourceType=sa]Az.AppConfiguration,1.2.0
-pac9,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ApplicationInsights.2.2.0.nupkg;sourceType=sa]Az.ApplicationInsights,2.2.0
+pac9,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ApplicationInsights.2.2.1.nupkg;sourceType=sa]Az.ApplicationInsights,2.2.1
pac10,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Attestation.2.0.0.nupkg;sourceType=sa]Az.Attestation,2.0.0
pac11,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Automanage.0.1.0.nupkg;sourceType=sa]Az.Automanage,0.1.0
-pac12,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Automation.1.8.0.nupkg;sourceType=sa]Az.Automation,1.8.0
+pac12,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Automation.1.9.0.nupkg;sourceType=sa]Az.Automation,1.9.0
pac13,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BareMetal.0.1.0.nupkg;sourceType=sa]Az.BareMetal,0.1.0
-pac14,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Batch.3.2.1.nupkg;sourceType=sa]Az.Batch,3.2.1
+pac14,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Batch.3.3.0.nupkg;sourceType=sa]Az.Batch,3.3.0
pac15,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Billing.2.0.0.nupkg;sourceType=sa]Az.Billing,2.0.0
-pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Blueprint.0.4.1.nupkg;sourceType=sa]Az.Blueprint,0.4.1
+pac16,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Blueprint.0.4.2.nupkg;sourceType=sa]Az.Blueprint,0.4.2
pac17,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.BotService.0.5.0.nupkg;sourceType=sa]Az.BotService,0.5.0
pac18,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Cdn.2.1.0.nupkg;sourceType=sa]Az.Cdn,2.1.0
pac19,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ChangeAnalysis.0.1.0.nupkg;sourceType=sa]Az.ChangeAnalysis,0.1.0
pac20,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CloudService.1.1.0.nupkg;sourceType=sa]Az.CloudService,1.1.0
pac21,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CognitiveServices.1.12.0.nupkg;sourceType=sa]Az.CognitiveServices,1.12.0
pac22,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Communication.0.2.0.nupkg;sourceType=sa]Az.Communication,0.2.0
-pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.5.2.0.nupkg;sourceType=sa]Az.Compute,5.2.0
+pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.5.3.0.nupkg;sourceType=sa]Az.Compute,5.3.0
pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.0.0.nupkg;sourceType=sa]Az.ConfidentialLedger,1.0.0
pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Confluent.0.2.0.nupkg;sourceType=sa]Az.Confluent,0.2.0
pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.7.0.nupkg;sourceType=sa]Az.ConnectedKubernetes,0.7.0
pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedMachine.0.4.1.nupkg;sourceType=sa]Az.ConnectedMachine,0.4.1
pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedNetwork.0.1.0.nupkg;sourceType=sa]Az.ConnectedNetwork,0.1.0
pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerInstance.3.1.0.nupkg;sourceType=sa]Az.ContainerInstance,3.1.0
-pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerRegistry.3.0.0.nupkg;sourceType=sa]Az.ContainerRegistry,3.0.0
+pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerRegistry.3.0.1.nupkg;sourceType=sa]Az.ContainerRegistry,3.0.1
pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CosmosDB.1.9.0.nupkg;sourceType=sa]Az.CosmosDB,1.9.0
pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CostManagement.0.3.0.nupkg;sourceType=sa]Az.CostManagement,0.3.0
pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CustomLocation.0.1.0.nupkg;sourceType=sa]Az.CustomLocation,0.1.0
@@ -51,7 +51,7 @@ pac49,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea
pac50,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceUpdate.0.1.0.nupkg;sourceType=sa]Az.DeviceUpdate,0.1.0
pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevSpaces.0.7.3.nupkg;sourceType=sa]Az.DevSpaces,0.7.3
pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevTestLabs.1.0.2.nupkg;sourceType=sa]Az.DevTestLabs,1.0.2
-pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DigitalTwins.0.1.0.nupkg;sourceType=sa]Az.DigitalTwins,0.1.0
+pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DigitalTwins.0.2.0.nupkg;sourceType=sa]Az.DigitalTwins,0.2.0
pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DiskPool.0.3.0.nupkg;sourceType=sa]Az.DiskPool,0.3.0
pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Dns.1.1.2.nupkg;sourceType=sa]Az.Dns,1.1.2
pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DnsResolver.0.2.1.nupkg;sourceType=sa]Az.DnsResolver,0.2.1
@@ -93,11 +93,11 @@ pac91,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea
pac92,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Media.1.1.1.nupkg;sourceType=sa]Az.Media,1.1.1
pac93,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Migrate.2.1.0.nupkg;sourceType=sa]Az.Migrate,2.1.0
pac94,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MixedReality.0.2.0.nupkg;sourceType=sa]Az.MixedReality,0.2.0
-pac95,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Monitor.4.3.0.nupkg;sourceType=sa]Az.Monitor,4.3.0
+pac95,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Monitor.4.4.0.nupkg;sourceType=sa]Az.Monitor,4.4.0
pac96,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MonitoringSolutions.0.1.0.nupkg;sourceType=sa]Az.MonitoringSolutions,0.1.0
pac97,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MySql.1.1.0.nupkg;sourceType=sa]Az.MySql,1.1.0
-pac98,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.10.0.nupkg;sourceType=sa]Az.NetAppFiles,0.10.0
-pac99,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.5.2.0.nupkg;sourceType=sa]Az.Network,5.2.0
+pac98,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.11.0.nupkg;sourceType=sa]Az.NetAppFiles,0.11.0
+pac99,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.5.3.0.nupkg;sourceType=sa]Az.Network,5.3.0
pac100,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkFunction.0.1.2.nupkg;sourceType=sa]Az.NetworkFunction,0.1.2
pac101,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Nginx.0.1.0.nupkg;sourceType=sa]Az.Nginx,0.1.0
pac102,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NotificationHubs.1.1.1.nupkg;sourceType=sa]Az.NotificationHubs,1.1.1
@@ -113,7 +113,7 @@ pac111,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-rele
pac112,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Purview.0.2.0.nupkg;sourceType=sa]Az.Purview,0.2.0
pac113,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quota.0.1.0.nupkg;sourceType=sa]Az.Quota,0.1.0
pac114,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RecoveryServices.6.1.2.nupkg;sourceType=sa]Az.RecoveryServices,6.1.2
-pac115,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.6.0.nupkg;sourceType=sa]Az.RedisCache,1.6.0
+pac115,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.7.0.nupkg;sourceType=sa]Az.RedisCache,1.7.0
pac116,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.1.0.nupkg;sourceType=sa]Az.RedisEnterpriseCache,1.1.0
pac117,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Relay.1.0.3.nupkg;sourceType=sa]Az.Relay,1.0.3
pac118,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.11.0.nupkg;sourceType=sa]Az.Reservations,0.11.0
@@ -122,17 +122,17 @@ pac120,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-rele
pac121,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.6.5.1.nupkg;sourceType=sa]Az.Resources,6.5.1
pac122,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Search.0.8.0.nupkg;sourceType=sa]Az.Search,0.8.0
pac123,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Security.1.3.0.nupkg;sourceType=sa]Az.Security,1.3.0
-pac124,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.0.0.nupkg;sourceType=sa]Az.SecurityInsights,3.0.0
+pac124,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.0.1.nupkg;sourceType=sa]Az.SecurityInsights,3.0.1
pac125,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceBus.2.1.0.nupkg;sourceType=sa]Az.ServiceBus,2.1.0
pac126,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceFabric.3.1.0.nupkg;sourceType=sa]Az.ServiceFabric,3.1.0
pac127,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ServiceLinker.0.1.0.nupkg;sourceType=sa]Az.ServiceLinker,0.1.0
pac128,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SignalR.1.5.0.nupkg;sourceType=sa]Az.SignalR,1.5.0
pac129,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SpringCloud.0.3.0.nupkg;sourceType=sa]Az.SpringCloud,0.3.0
-pac130,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.4.1.0.nupkg;sourceType=sa]Az.Sql,4.1.0
+pac130,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.4.2.0.nupkg;sourceType=sa]Az.Sql,4.2.0
pac131,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SqlVirtualMachine.1.1.0.nupkg;sourceType=sa]Az.SqlVirtualMachine,1.1.0
pac132,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Ssh.0.1.0.nupkg;sourceType=sa]Az.Ssh,0.1.0
pac133,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.1.4.1.nupkg;sourceType=sa]Az.StackHCI,1.4.1
-pac134,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.5.2.0.nupkg;sourceType=sa]Az.Storage,5.2.0
+pac134,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.5.3.0.nupkg;sourceType=sa]Az.Storage,5.3.0
pac135,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageMover.0.1.0.nupkg;sourceType=sa]Az.StorageMover,0.1.0
pac136,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StorageSync.1.7.0.nupkg;sourceType=sa]Az.StorageSync,1.7.0
pac137,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StreamAnalytics.2.0.0.nupkg;sourceType=sa]Az.StreamAnalytics,2.0.0
@@ -142,6 +142,7 @@ pac140,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-rele
pac141,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TimeSeriesInsights.0.2.0.nupkg;sourceType=sa]Az.TimeSeriesInsights,0.2.0
pac142,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.TrafficManager.1.1.0.nupkg;sourceType=sa]Az.TrafficManager,1.1.0
pac143,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VMware.0.5.0.nupkg;sourceType=sa]Az.VMware,0.5.0
-pac144,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Websites.2.12.0.nupkg;sourceType=sa]Az.Websites,2.12.0
-pac145,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WindowsIotServices.0.1.0.nupkg;sourceType=sa]Az.WindowsIotServices,0.1.0
+pac144,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.VoiceServices.0.1.0.nupkg;sourceType=sa]Az.VoiceServices,0.1.0
+pac145,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Websites.2.12.1.nupkg;sourceType=sa]Az.Websites,2.12.1
+pac146,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.WindowsIotServices.0.1.0.nupkg;sourceType=sa]Az.WindowsIotServices,0.1.0
diff --git a/tools/ExecuteCIStep.ps1 b/tools/ExecuteCIStep.ps1
index 23af41250767..1cf1024bea36 100644
--- a/tools/ExecuteCIStep.ps1
+++ b/tools/ExecuteCIStep.ps1
@@ -23,9 +23,12 @@ Param(
[String]
$BuildAction='build',
- [Switch]
+ [String]
$GenerateDocumentationFile,
+ [String]
+ $EnableTestCoverage,
+
[Switch]
$Test,
@@ -37,10 +40,10 @@ Param(
[Switch]
$StaticAnalysisDependency,
-
+
[Switch]
$StaticAnalysisSignature,
-
+
[Switch]
$StaticAnalysisHelp,
@@ -70,14 +73,17 @@ $ErrorActionPreference = 'Stop'
If ($Build)
{
$LogFile = "$RepoArtifacts/Build.Log"
- If ($GenerateDocumentationFile)
+ $buildCmdResult = "dotnet $BuildAction $RepoArtifacts/Azure.PowerShell.sln -c $Configuration -fl '/flp1:logFile=$LogFile;verbosity=quiet'"
+ If ($GenerateDocumentationFile -eq "false")
{
- dotnet $BuildAction $RepoArtifacts/Azure.PowerShell.sln -c $Configuration -fl "/flp1:logFile=$LogFile;verbosity=quiet"
+ $buildCmdResult += " -p:GenerateDocumentationFile=false"
}
- Else
+ if ($EnableTestCoverage -eq "true")
{
- dotnet $BuildAction $RepoArtifacts/Azure.PowerShell.sln -c $Configuration -p:GenerateDocumentationFile=false -fl "/flp1:logFile=$LogFile;verbosity=quiet"
+ $buildCmdResult += " -p:TestCoverage=TESTCOVERAGE"
}
+ Invoke-Expression -Command $buildCmdResult
+
If (Test-Path -Path "$RepoArtifacts/PipelineResult")
{
$LogContent = Get-Content $LogFile
@@ -324,4 +330,4 @@ If ($StaticAnalysisUX)
dotnet $RepoArtifacts/StaticAnalysis/StaticAnalysis.Netcore.dll -p $RepoArtifacts/$Configuration -r $StaticAnalysisOutputDirectory --analyzers ux -u -m $UXModuleList
}
Return
-}
\ No newline at end of file
+}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync.sln b/tools/NetCoreCsProjSync/NetCoreCsProjSync.sln
deleted file mode 100644
index 2a726100b858..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.27130.2027
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCoreCsProjSync", "NetCoreCsProjSync\NetCoreCsProjSync.csproj", "{A4770252-60C6-4529-AC0C-F899BDB7C865}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {A4770252-60C6-4529-AC0C-F899BDB7C865}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {A4770252-60C6-4529-AC0C-F899BDB7C865}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {A4770252-60C6-4529-AC0C-F899BDB7C865}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {A4770252-60C6-4529-AC0C-F899BDB7C865}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {A1F9EDFD-FA4D-487E-B740-AD26183A6E47}
- EndGlobalSection
-EndGlobal
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync.sln.DotSettings b/tools/NetCoreCsProjSync/NetCoreCsProjSync.sln.DotSettings
deleted file mode 100644
index 934e2dcd6060..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync.sln.DotSettings
+++ /dev/null
@@ -1,3 +0,0 @@
-
- SOLUTION
- C:\Users\miyanni\AppData\Local\JetBrains\Transient\ReSharperPlatformVs15\v09_53a45c4a\SolutionCaches
\ No newline at end of file
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/ModuleMap.json b/tools/NetCoreCsProjSync/NetCoreCsProjSync/ModuleMap.json
deleted file mode 100644
index 0177b1c858cd..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/ModuleMap.json
+++ /dev/null
@@ -1,116 +0,0 @@
-{
- "AnalysisServices": [
- "Management.Analysis"
- ],
- "ApiManagement.ServiceManagement": [
- "Management.ApiManagement"
- ],
- "AzureBackup": [
- "Management.BackupServices",
- "WindowsAzure.Management.Scheduler"
- ],
- "Batch": [
- "Azure.Batch",
- "Management.Batch"
- ],
- "Management.CognitiveServices": [
- "Management.CognitiveServices"
- ],
- "Compute": [
- "Management.Compute",
- "Management.KeyVault"
- ],
- "DataFactories": [
- "Management.DataFactories",
- "DataTransfer.Gateway.Encryption"
- ],
- "DataFactoryV2": [
- "Management.DataFactory"
- ],
- "DataLakeAnalytics": [
- "Management.DataLake.Analytics"
- ],
- "DataLakeStore": [
- "Management.DataLake.Store"
- ],
- "HDInsight": [
- "Management.HDInsight",
- "Management.HDInsight.Job"
- ],
- "Insights": [
- "Management.Monitor"
- ],
- "KeyVault": [
- "Azure.KeyVault",
- "Azure.KeyVault.WebKey",
- "Management.KeyVault"
- ],
- "LogicApp": [
- "Management.Logic",
- "Management.WebSites"
- ],
- "OperationalInsights": [
- "Management.OperationalInsights",
- "Azure.OperationalInsights"
- ],
- "Partner": [
- "Management.ManagementPartner"
- ],
- "PowerBI": [
- "Management.PowerBIDedicated"
- ],
- "Management.PowerBIEmbedded": [
- "Management.PowerBIEmbedded"
- ],
- "RecoveryServices.Backup.Cmdlets": [
- "Management.RecoveryServices.Backup"
- ],
- "RecoveryServices.Backup.Helpers": [
- "Management.RecoveryServices.Backup"
- ],
- "RecoveryServices.Backup.Models": [
- "Management.RecoveryServices.Backup"
- ],
- "RecoveryServices.Backup.Providers": [
- "Management.RecoveryServices.Backup"
- ],
- "RecoveryServices.Backup.ServiceClientAdapter": [
- "Management.RecoveryServices",
- "Management.RecoveryServices.Backup"
- ],
- "RecoveryServices.SiteRecovery": [
- "Management.RecoveryServices",
- "Management.RecoveryServices.SiteRecovery"
- ],
- "RedisCache": [
- "Azure.Insights",
- "Management.Redis"
- ],
- "Resources": [
- "Management.Authorization"
- ],
- "Resources.Rest": [
- "Management.ResourceManager"
- ],
- "ServiceFabric": [
- "Azure.KeyVault",
- "Azure.KeyVault.WebKey",
- "Management.Compute",
- "Management.KeyVault",
- "Management.Network",
- "Management.ResourceManager",
- "Management.ServiceFabric",
- "Management.Storage"
- ],
- "Sql": [
- "Management.Sql",
- "Microsoft.Azure.Management.Storage",
- "WindowsAzure.Management.Storage"
- ],
- "Management.Storage": [
- "Management.Storage"
- ],
- "UsageAggregates": [
- "Commerce.UsageAggregates"
- ]
-}
\ No newline at end of file
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/ModuleSkipList.json b/tools/NetCoreCsProjSync/NetCoreCsProjSync/ModuleSkipList.json
deleted file mode 100644
index 26c35ce0f815..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/ModuleSkipList.json
+++ /dev/null
@@ -1,8 +0,0 @@
-[
- "Aks",
- "AnalysisServices.Dataplane",
- "Compute.ManagedService",
- "Profile",
- "RecoveryServices.Backup.Logger",
- "Tags"
-]
\ No newline at end of file
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreBase.csproj b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreBase.csproj
deleted file mode 100644
index acc537a5c59b..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreBase.csproj
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
- netcoreapp3.1;net472
-
-
- false
- true
- true
- false
-
-
-
- TRACE;DEBUG;NETSTANDARD
-
- false
-
-
-
-
-
- True
- True
- MSSharedLibKey.snk
- TRACE;RELEASE;NETSTANDARD;SIGN
-
-
-
-
-
-
-
- PreserveNewest
-
-
-
-
-
-
-
-
- True
- True
- Resources.resx
-
-
-
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
-
-
-
- PreserveNewest
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjGenerator.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjGenerator.cs
deleted file mode 100644
index e1a169b2611a..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjGenerator.cs
+++ /dev/null
@@ -1,467 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Xml.Serialization;
-using NetCoreCsProjSync.NewModel;
-using NetCoreCsProjSync.OldModel;
-using Newtonsoft.Json;
-
-namespace NetCoreCsProjSync
-{
- internal static class NetCoreCsProjGenerator
- {
- private const string CsProjExtension = @".csproj";
- private const string CsProjFilter = @"*" + CsProjExtension;
- private const string NetCoreDenoter = @".Netcore";
- private const string NetCoreCsProjExtension = NetCoreDenoter + CsProjExtension;
- private const string NetCoreFilter = @"*" + NetCoreCsProjExtension;
-
- private const string CommandsFilter = @"Commands.*";
- private static readonly string[] TestFolderDenoters = {@".Test", @".UnitTest", @".Tests"};
-
- private static bool IsTestFolder(string path) => TestFolderDenoters.Any(path.EndsWith);
-
- private static bool HasCsProj(string path, bool ignoreExisting = false) =>
- Directory.EnumerateFiles(path, CsProjFilter, SearchOption.TopDirectoryOnly).Any() &&
- (ignoreExisting || !Directory.EnumerateFiles(path, NetCoreFilter, SearchOption.TopDirectoryOnly).Any());
-
- // https://stackoverflow.com/a/25245678/294804
- public static IEnumerable GetProjectFolderPaths(string rmPath, bool ignoreExisting = false) =>
- Directory.EnumerateDirectories(rmPath).SelectMany(md =>
- Directory.EnumerateDirectories(md, CommandsFilter).Where(pd =>
- !IsTestFolder(pd) && HasCsProj(pd, ignoreExisting)));
-
- private static readonly List<(string[] FolderNames, Func> GetTestDirs)?> TestFolderMapper =
- new List<(string[] FolderNames, Func> GetTestDirs)?>
- {
- (new []{"Common", "Storage"},
- dir => Directory.EnumerateDirectories(dir).Where(IsTestFolder)),
- (new []{"ResourceManager", "StackAdmin"},
- dir => Directory.EnumerateDirectories(dir).SelectMany(md => Directory.EnumerateDirectories(md).Where(IsTestFolder)))
- };
-
- //https://stackoverflow.com/a/5229311/294804
- public static IEnumerable GetTestProjectFolderPaths(string srcPath, bool ignoreExisting = false) =>
- Directory.EnumerateDirectories(srcPath)
- .SelectMany(dir => TestFolderMapper.FirstOrDefault(m => m?.FolderNames?.Contains(new DirectoryInfo(dir).Name) ?? false)?.GetTestDirs(dir) ?? Enumerable.Empty())
- .Where(pd => HasCsProj(pd, ignoreExisting));
-
- public static IEnumerable GetTestDesktopFilePaths(IEnumerable testProjectPaths) =>
- testProjectPaths.Select(pd => Directory.EnumerateFiles(pd).Where(f => TestFolderDenoters.Any(tfd => f.EndsWith(tfd + CsProjExtension)))
- .First(f => !f.Contains(NetCoreCsProjExtension)));
-
- public static IEnumerable GetDesktopFilePaths(IEnumerable projectPaths) =>
- projectPaths.Select(pd => Directory.EnumerateFiles(pd, CsProjFilter, SearchOption.TopDirectoryOnly).First(f => !f.Contains(NetCoreCsProjExtension)));
-
- public static string ConvertDesktopToNetCorePath(string desktopPath) =>
- Path.Combine(Path.GetDirectoryName(desktopPath), Path.GetFileNameWithoutExtension(desktopPath) + NetCoreCsProjExtension);
-
- public static IEnumerable GetDesktopDefinitions(IEnumerable desktopFilePaths)
- {
- var serializer = new XmlSerializer(typeof(OldProjectDefinition));
- foreach (var path in desktopFilePaths)
- {
- using (var fileStream = new FileStream(path, FileMode.Open))
- {
- var definition = (OldProjectDefinition) serializer.Deserialize(fileStream);
- definition.FilePath = path;
- yield return definition;
- }
- }
- }
-
- public static readonly List ModuleSkipList = File.Exists("ModuleSkipList.json")
- ? JsonConvert.DeserializeObject>(File.ReadAllText("ModuleSkipList.json")) :
- new List
- {
- "Aks",
- "AnalysisServices.Dataplane",
- "Compute.ManagedService",
- "Profile",
- "RecoveryServices.Backup.Logger",
- "Tags"
- };
-
- public static readonly Dictionary> ModuleMap = File.Exists("ModuleMap.json")
- ? JsonConvert.DeserializeObject>>(File.ReadAllText("ModuleMap.json")) :
- new Dictionary>
- {
- { "AnalysisServices", new List { "Management.Analysis" } },
- { "ApiManagement.ServiceManagement", new List { "Management.ApiManagement" } },
- { "AzureBackup", new List { "Management.BackupServices", "WindowsAzure.Management.Scheduler" } },
- { "Batch", new List { "Azure.Batch", "Management.Batch" } },
- { "Management.CognitiveServices", new List { "Management.CognitiveServices" } },
- { "Compute", new List { "Management.Compute", "Management.KeyVault" } },
- { "DataFactories", new List { "Management.DataFactories", "DataTransfer.Gateway.Encryption" } },
- { "DataFactoryV2", new List { "Management.DataFactory" } },
- { "DataLakeAnalytics", new List { "Management.DataLake.Analytics" } },
- { "DataLakeStore", new List { "Management.DataLake.Store" } },
- { "HDInsight", new List { "Management.HDInsight", "Management.HDInsight.Job" } },
- { "Insights", new List { "Management.Monitor" } },
- { "KeyVault", new List { "Azure.KeyVault", "Azure.KeyVault.WebKey", "Management.KeyVault" } },
- { "LogicApp", new List { "Management.Logic", "Management.WebSites" } },
- { "OperationalInsights", new List { "Management.OperationalInsights", "Azure.OperationalInsights" } },
- { "Partner", new List { "Management.ManagementPartner" } },
- { "PowerBI", new List { "Management.PowerBIDedicated" } },
- { "Management.PowerBIEmbedded", new List { "Management.PowerBIEmbedded" } },
- { "RecoveryServices.Backup.Cmdlets", new List { "Management.RecoveryServices.Backup" } },
- { "RecoveryServices.Backup.Helpers", new List { "Management.RecoveryServices.Backup" } },
- { "RecoveryServices.Backup.Models", new List { "Management.RecoveryServices.Backup" } },
- { "RecoveryServices.Backup.Providers", new List { "Management.RecoveryServices.Backup" } },
- { "RecoveryServices.Backup.ServiceClientAdapter", new List { "Management.RecoveryServices", "Management.RecoveryServices.Backup" } },
- { "RecoveryServices.SiteRecovery", new List { "Management.RecoveryServices", "Management.RecoveryServices.SiteRecovery" } },
- { "RedisCache", new List { "Azure.Insights", "Management.Redis" } },
- { "Resources", new List { "Management.Authorization" } },
- { "Resources.Rest", new List { "Management.ResourceManager" } },
- { "ServiceFabric", new List { "Azure.KeyVault", "Azure.KeyVault.WebKey", "Management.Compute", "Management.KeyVault", "Management.Network", "Management.ResourceManager", "Management.ServiceFabric", "Management.Storage" } },
- { "Sql", new List { "Management.Sql", "Microsoft.Azure.Management.Storage", "WindowsAzure.Management.Storage" } },
- { "Management.Storage", new List { "Management.Storage" } },
- { "UsageAggregates", new List { "Commerce.UsageAggregates" } }
- };
-
- public static Version StringToVersion(string version) => new Version(version.Split('-').First());
-
- private static string CreateVersionFromHintPath(string hintPath)
- {
- var slashParts = hintPath.Split('\\');
- if (slashParts[0] != "..") return null;
-
- var slashPartIndex = slashParts.Select((sp, i) => ((int Index, string SlashPart)?)(Index: i, SlashPart: sp))
- .FirstOrDefault(t => t?.SlashPart?.ToLower()?.Contains("packages") ?? false)?.Index;
- if (slashPartIndex == null) return null;
-
- var parts = slashParts[slashPartIndex.Value + 1].Split('.');
- //https://stackoverflow.com/a/18251942/294804
- var firstDigitIndex = parts.Select((p, i) => (Index: i, Part: p)).First(a => a.Part.All(Char.IsDigit)).Index;
- //https://stackoverflow.com/a/14435083/294804
- return String.Join('.', parts.Skip(firstDigitIndex));
- }
-
- public static string GetVersionString(OldReference oldReference)
- {
- const string versionToken = " Version=";
- var hasVersion = oldReference.Include.Contains(versionToken);
- var hasHintPath = oldReference.HintPath != null;
- var version = hasHintPath ? CreateVersionFromHintPath(oldReference.HintPath) : null;
- return version ?? (hasVersion ? oldReference.Include.Split(',')[1].Replace(versionToken, String.Empty) : null);
- }
-
- public static NewPackageReference ConvertOldToNewPackageReference(OldReference oldReference, IEnumerable skipList)
- {
- var version = GetVersionString(oldReference);
- var include = oldReference.Include.Split(',').First();
- return version == null || skipList.Contains(include) ? null : new NewPackageReference { Include = include, Version = version };
- }
-
- private static string ModifyOutputPath(string outputPath)
- {
- var length = outputPath.Length - (outputPath.EndsWith('\\') ? 1 : 0);
- return $"{outputPath.Substring(0, length)}{NetCoreDenoter}\\";
- }
-
- private static string ModifyPsd1Info(string psd1Info) => $"{psd1Info.Replace(".psd1", String.Empty)}{NetCoreDenoter}.psd1";
-
-
- private static readonly Dictionary ProjectReferenceMapper = new Dictionary
- {
- {"Commands.Common.csproj", "Common.Netcore.csproj"},
- {"Commands.Common.Authentication.csproj", "Common.Authentication.Netcore.csproj"},
- {"Commands.Common.Authentication.Abstractions.csproj", "Common.Authentication.Abstractions.Netcore.csproj"},
- {"Commands.Common.Authorization.csproj", "Common.Authorization.Netcore.csproj"},
- {"Commands.Common.Graph.RBAC.csproj", "Common.Rbac.Netcore.csproj"},
- {"Commands.Common.Network.csproj", "Common.Network.Netcore.csproj"},
- {"Commands.Common.Storage.csproj", "Common.Storage.Netcore.csproj"},
-
- {"Commands.Common.Authentication.ResourceManager.csproj","Common.ResourceManager.Authentication.Netcore.csproj"},
- {"Commands.Common.Strategies.csproj", "Common.Strategies.Netcore.csproj"},
- {"Commands.ResourceManager.Common.csproj", "Common.ResourceManager.Netcore.csproj"},
-
- {"Commands.Resources.Rest.csproj", "Commands.Resources.Rest.Netcore.csproj"},
- {"Commands.ScenarioTests.ResourceManager.Common.csproj","Common.ResourceManager.ScenarioTests.Netcore.csproj"}
- };
-
- private static string ModifyProjectReferencePath(string includePath)
- {
- var parts = includePath.Split('\\');
- var lastPart = parts.Last();
- var newLastPart = ProjectReferenceMapper.ContainsKey(lastPart) ? ProjectReferenceMapper[lastPart] : lastPart;
- var newParts = parts.Take(parts.Length - 1).Append(newLastPart);
- return String.Join('\\', newParts);
- }
-
- public static NewProjectDefinition ConvertOldToNewNetCore(OldProjectDefinition oldDefinition)
- {
- var oldReferences = oldDefinition.ItemGroups.Where(ig => ig.References?.Any() ?? false).SelectMany(ig => ig.References);
- var newPackageReferences = oldReferences.Select(or => ConvertOldToNewPackageReference(or, new []{ "System.Management.Automation" })).Where(r => r != null).ToList();
- var packageReferencesItemGroup = !newPackageReferences.Any() ? null : new NewItemGroup
- {
- PackageReferences = newPackageReferences
- };
- var noneItems = oldDefinition.ItemGroups.Where(ig => ig.NoneItems?.Any() ?? false).SelectMany(ig => ig.NoneItems).ToList();
- var psd1None = noneItems.FirstOrDefault(ni => ni.Include?.EndsWith("psd1") ?? false);
- var psd1ItemGroup = psd1None == null ? null : new NewItemGroup
- {
- NoneItems = new List
- {
- new NewNone
- {
- Include = ModifyPsd1Info(psd1None.Include),
- Link = psd1None.Link == null ? null : ModifyPsd1Info(psd1None.Link),
- CopyToOutputDirectory = "PreserveNewest"
- }
- }
- };
- var newProjectReferences = oldDefinition.ItemGroups.Where(ig => ig.ProjectReferences?.Any() ?? false).SelectMany(ig => ig.ProjectReferences)
- .Select(pr => new NewProjectReference { Include = ModifyProjectReferencePath(pr.Include) }).ToList();
- var projectReferencesItemGroup = !newProjectReferences.Any() ? null : new NewItemGroup
- {
- ProjectReferences = newProjectReferences
- };
- var ps1XmlInclude = noneItems.FirstOrDefault(ni => ni.Include?.EndsWith("ps1xml") ?? false)?.Include;
- if (ps1XmlInclude == null)
- {
- var contentItems = oldDefinition.ItemGroups.Where(ig => ig.ContentItems?.Any() ?? false).SelectMany(ig => ig.ContentItems).ToList();
- ps1XmlInclude = contentItems.FirstOrDefault(ci => ci.Include?.EndsWith("ps1xml") ?? false)?.Include;
- }
- var ps1XmlItemGroup = ps1XmlInclude == null ? null : new NewItemGroup
- {
- NoneItems = new List
- {
- new NewNone
- {
- Update = ps1XmlInclude,
- CopyToOutputDirectory = "PreserveNewest"
- }
- }
- };
-
- return new NewProjectDefinition
- {
- Sdk = "Microsoft.NET.Sdk",
- Import = new NewImport
- {
- Project = @"..\..\..\..\tools\Common.Netcore.Dependencies.targets"
- },
- PropertyGroups = new List
- {
- new NewPropertyGroup
- {
- TargetFramework = "netcoreapp2.0",
- AssemblyName = oldDefinition.PropertyGroups.First(pg => pg.AssemblyName != null).AssemblyName,
- RootNamespace = oldDefinition.PropertyGroups.First(pg => pg.RootNamespace != null).RootNamespace,
- GenerateAssemblyInfo = false,
- AllowUnsafeBlocks = true,
- CopyLocalLockFileAssemblies = true,
- AppendTargetFrameworkToOutputPath = false
- },
- new NewPropertyGroup
- {
- Condition = "'$(Configuration)|$(Platform)'=='Debug|AnyCPU'",
- OutputPath = ModifyOutputPath(oldDefinition.PropertyGroups.First(pg => pg.OutputPath?.Contains("Debug") ?? false).OutputPath),
- DelaySign = false,
- DefineConstants = "TRACE;DEBUG;NETSTANDARD"
- },
- new NewPropertyGroup
- {
- Condition = "'$(Configuration)|$(Platform)'=='Release|AnyCPU'",
- OutputPath = ModifyOutputPath(oldDefinition.PropertyGroups.First(pg => pg.OutputPath?.Contains("Release") ?? false).OutputPath),
- DocumentationFile = String.Empty,
- SignAssembly = true,
- DelaySign = true,
- AssemblyOriginatorKeyFile = "MSSharedLibKey.snk",
- DefineConstants = "TRACE;RELEASE;NETSTANDARD;SIGN"
- }
- },
- ItemGroups = new List
- {
- packageReferencesItemGroup,
- psd1ItemGroup,
- projectReferencesItemGroup,
- new NewItemGroup
- {
- CompileItems = new List
- {
- new NewCompile
- {
- Update = @"Properties\Resources.Designer.cs",
- DesignTime = true,
- AutoGen = true,
- DependentUpon = "Resources.resx"
- }
- }
- },
- new NewItemGroup
- {
- EmbeddedResources = new List
- {
- new NewEmbeddedResource
- {
- Update = @"Properties\Resources.resx",
- Generator = "ResXFileCodeGenerator",
- LastGenOutput = "Resources.Designer.cs"
- }
- }
- },
- ps1XmlItemGroup,
- new NewItemGroup
- {
- ContentItems = new List
- {
- new NewContent
- {
- Include = @"help\**\*",
- CopyToOutputDirectory = "PreserveNewest"
- }
- }
- }
- }
- };
- }
-
- private static readonly List TestReferenceSkipList = new List
- {
- "Hyak.Common",
- "Microsoft.Azure.Common",
- "Microsoft.Azure.Common.NetFramework",
- "Microsoft.Azure.Gallery",
- "Microsoft.Azure.Management.Authorization",
- "Microsoft.Azure.Management.ResourceManager",
- "Microsoft.Azure.ResourceManager",
- "Microsoft.Azure.Test.Framework",
- "Microsoft.Azure.Test.HttpRecorder",
- "Microsoft.IdentityModel.Clients.ActiveDirectory",
- "Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms",
- "Microsoft.Rest.ClientRuntime",
- "Microsoft.Rest.ClientRuntime.Azure",
- "Microsoft.Rest.ClientRuntime.Azure.Authentication",
- "Microsoft.Rest.ClientRuntime.Azure.TestFramework",
- "Microsoft.Threading.Tasks",
- "Microsoft.Threading.Tasks.Extensions",
- "Microsoft.Threading.Tasks.Extensions.Desktop",
- "Microsoft.WindowsAzure.Management",
- "Microsoft.Bcl.Build",
- "Microsoft.Data.Edm",
- "Microsoft.Data.OData",
- "Microsoft.Data.Services.Client",
- "Newtonsoft.Json",
- "System.Net.Http.Extensions",
- "System.Net.Http.Primitives",
- "System.Spatial",
- "xunit.abstractions",
- "xunit.assert",
- "xunit.core",
- "xunit.execution.desktop"
- };
-
- public static NewProjectDefinition ConvertOldTestToNewTestNetCore(OldProjectDefinition oldDefinition)
- {
- var oldReferences = oldDefinition.ItemGroups.Where(ig => ig.References?.Any() ?? false).SelectMany(ig => ig.References);
- var newPackageReferences = oldReferences.Select(or => ConvertOldToNewPackageReference(or, TestReferenceSkipList)).Where(r => r != null).ToList();
- var packageReferencesItemGroup = !newPackageReferences.Any() ? null : new NewItemGroup
- {
- PackageReferences = newPackageReferences
- };
-
- var newAssemblyName = oldDefinition.PropertyGroups.First(pg => pg.AssemblyName != null).AssemblyName;
- var testDenoter = TestFolderDenoters.First(tfd => oldDefinition.FilePath.Contains(tfd));
- var newDllReferenceInclude = newAssemblyName.Replace(testDenoter, String.Empty);
- var projectName = newDllReferenceInclude.Split('.').Last();
- var isRmModule = oldDefinition.FilePath.Contains("ResourceManager");
-
- var newProjectReferences = oldDefinition.ItemGroups.Where(ig => ig.ProjectReferences?.Any() ?? false).SelectMany(ig => ig.ProjectReferences)
- .Where(pr => !(isRmModule && pr.Include.Contains(projectName)))
- .Select(pr => new NewProjectReference { Include = ModifyProjectReferencePath(pr.Include) }).ToList();
- var projectReferencesItemGroup = !newProjectReferences.Any() ? null : new NewItemGroup
- {
- ProjectReferences = newProjectReferences
- };
-
- var dllReferenceItemGroup = !isRmModule ? null : new NewItemGroup
- {
- References = new List
- {
- new NewReference
- {
- Include = newDllReferenceInclude,
- HintPath = $"..\\..\\..\\..\\artifacts\\$(Configuration)\\AzureRM.{projectName}.Netcore\\{newDllReferenceInclude}.dll"
- }
- }
- };
-
- var projectFolder = Path.GetDirectoryName(oldDefinition.FilePath);
- var hasSessionRecords = Directory.Exists(Path.Combine(projectFolder, "SessionRecords"));
- var hasScenarioTests = Directory.Exists(Path.Combine(projectFolder, "ScenarioTests"));
- var noneItemGroup = !(hasSessionRecords || hasScenarioTests) ? null : new NewItemGroup
- {
- NoneItems = new List
- {
- !hasSessionRecords ? null : new NewNone
- {
- Update = @"SessionRecords\**\*.json",
- CopyToOutputDirectory = "PreserveNewest"
- },
- !hasScenarioTests ? null : new NewNone
- {
- Update = @"ScenarioTests\*.ps1",
- CopyToOutputDirectory = "PreserveNewest"
- }
- }
- };
-
- return new NewProjectDefinition
- {
- Sdk = "Microsoft.NET.Sdk",
- Import = new NewImport
- {
- Project = @"..\..\..\..\tools\Common.Netcore.Dependencies.Test.targets"
- },
- PropertyGroups = new List
- {
- new NewPropertyGroup
- {
- TargetFramework = "netcoreapp2.0",
- AssemblyName = newAssemblyName,
- RootNamespace = oldDefinition.PropertyGroups.First(pg => pg.RootNamespace != null).RootNamespace,
- GenerateAssemblyInfo = false
- },
- new NewPropertyGroup
- {
- Condition = "'$(Configuration)|$(Platform)'=='Debug|AnyCPU'",
- DelaySign = false,
- DefineConstants = "TRACE;DEBUG;NETSTANDARD"
- },
- new NewPropertyGroup
- {
- Condition = "'$(Configuration)|$(Platform)'=='Release|AnyCPU'",
- SignAssembly = true,
- DelaySign = true,
- AssemblyOriginatorKeyFile = "MSSharedLibKey.snk",
- DefineConstants = "TRACE;RELEASE;NETSTANDARD;SIGN"
- }
- },
- ItemGroups = new List
- {
- packageReferencesItemGroup,
- projectReferencesItemGroup,
- dllReferenceItemGroup,
- noneItemGroup
- }
- };
- }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjSync.csproj b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjSync.csproj
deleted file mode 100644
index 46136f7012f8..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjSync.csproj
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
- Exe
- netcoreapp3.1;net472
-
-
-
- latest
-
-
-
-
- Never
-
-
-
-
-
-
-
-
-
-
- PreserveNewest
-
-
- PreserveNewest
-
-
-
-
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjSync.csproj.DotSettings b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjSync.csproj.DotSettings
deleted file mode 100644
index 58ad6c885496..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NetCoreCsProjSync.csproj.DotSettings
+++ /dev/null
@@ -1,2 +0,0 @@
-
- CSharp71
\ No newline at end of file
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewCompile.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewCompile.cs
deleted file mode 100644
index 0c87d9ff3911..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewCompile.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewCompile
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlAttribute("Update")]
- public string Update { get; set; }
-
- [XmlAttribute("Link")]
- public string Link { get; set; }
-
- [XmlElement("DesignTime")]
- public XmlBool DesignTime { get; set; }
-
- [XmlElement("AutoGen")]
- public XmlBool AutoGen { get; set; }
-
- [XmlElement("DependentUpon")]
- public string DependentUpon { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewContent.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewContent.cs
deleted file mode 100644
index b0ca1689c023..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewContent.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewContent
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlAttribute("CopyToOutputDirectory")]
- public string CopyToOutputDirectory { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewEmbeddedResource.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewEmbeddedResource.cs
deleted file mode 100644
index 2e513d081b27..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewEmbeddedResource.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewEmbeddedResource
- {
- [XmlAttribute("Update")]
- public string Update { get; set; }
-
- [XmlElement("Generator")]
- public string Generator { get; set; }
-
- [XmlElement("LastGenOutput")]
- public string LastGenOutput { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewImport.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewImport.cs
deleted file mode 100644
index 5a36bc4b7223..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewImport.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewImport
- {
- [XmlAttribute("Project")]
- public string Project { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewItemGroup.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewItemGroup.cs
deleted file mode 100644
index 3434f4a9d99f..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewItemGroup.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewItemGroup
- {
- [XmlAttribute("Condition")]
- public string Condition { get; set; }
-
- [XmlElement("PackageReference")]
- public List PackageReferences { get; set; }
-
- [XmlElement("Compile")]
- public List CompileItems { get; set; }
-
- [XmlElement("ProjectReference")]
- public List ProjectReferences { get; set; }
-
- [XmlElement("None")]
- public List NoneItems { get; set; }
-
- [XmlElement("EmbeddedResource")]
- public List EmbeddedResources { get; set; }
-
- [XmlElement("Content")]
- public List ContentItems { get; set; }
-
- [XmlElement("Reference")]
- public List References { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewNone.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewNone.cs
deleted file mode 100644
index 302e873e940a..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewNone.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewNone
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlAttribute("Update")]
- public string Update { get; set; }
-
- [XmlAttribute("Link")]
- public string Link { get; set; }
-
- [XmlElement("CopyToOutputDirectory")]
- public string CopyToOutputDirectory { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewPackageReference.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewPackageReference.cs
deleted file mode 100644
index e13935967ea5..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewPackageReference.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewPackageReference
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlAttribute("Version")]
- public string Version { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewProjectDefinition.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewProjectDefinition.cs
deleted file mode 100644
index 0d189a86fab5..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewProjectDefinition.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- [XmlRoot("Project")]
- public class NewProjectDefinition
- {
- [XmlAttribute("Sdk")]
- public string Sdk { get; set; }
-
- [XmlElement("Import")]
- public NewImport Import { get; set; }
-
- //https://stackoverflow.com/a/10518657/294804
- [XmlElement("PropertyGroup")]
- public List PropertyGroups { get; set; }
-
- [XmlElement("ItemGroup")]
- public List ItemGroups { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewProjectReference.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewProjectReference.cs
deleted file mode 100644
index 673128b1594d..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewProjectReference.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewProjectReference
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewPropertyGroup.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewPropertyGroup.cs
deleted file mode 100644
index cc61de2ac4cf..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewPropertyGroup.cs
+++ /dev/null
@@ -1,65 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewPropertyGroup
- {
- [XmlElement("TargetFramework")]
- public string TargetFramework { get; set; }
-
- [XmlElement("AssemblyName")]
- public string AssemblyName { get; set; }
-
- [XmlElement("RootNamespace")]
- public string RootNamespace { get; set; }
-
- [XmlElement("GenerateAssemblyInfo")]
- public XmlBool GenerateAssemblyInfo { get; set; }
-
- [XmlElement("AllowUnsafeBlocks")]
- public XmlBool AllowUnsafeBlocks { get; set; }
-
- [XmlElement("CopyLocalLockFileAssemblies")]
- public XmlBool CopyLocalLockFileAssemblies { get; set; }
-
- [XmlElement("AppendTargetFrameworkToOutputPath")]
- public XmlBool AppendTargetFrameworkToOutputPath { get; set; }
-
- [XmlAttribute("Condition")]
- public string Condition { get; set; }
-
- [XmlElement("OutputPath")]
- public string OutputPath { get; set; }
-
- [XmlElement("DocumentationFile")]
- public string DocumentationFile { get; set; }
-
- [XmlElement("SignAssembly")]
- public XmlBool SignAssembly { get; set; }
-
- [XmlElement("DelaySign")]
- public XmlBool DelaySign { get; set; }
-
- [XmlElement("AssemblyOriginatorKeyFile")]
- public string AssemblyOriginatorKeyFile { get; set; }
-
- [XmlElement("DefineConstants")]
- public string DefineConstants { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewReference.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewReference.cs
deleted file mode 100644
index 4464df0eb983..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/NewReference.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- [Serializable]
- public class NewReference
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlElement("HintPath")]
- public string HintPath { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/XmlBool.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/XmlBool.cs
deleted file mode 100644
index ae428572c4be..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/NewModel/XmlBool.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml;
-using System.Xml.Schema;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.NewModel
-{
- public class XmlBool : IXmlSerializable, IEquatable, IEquatable
- {
- private bool? _value;
-
- public XmlBool() : this(null)
- {
- }
-
- public XmlBool(bool? value)
- {
- _value = value;
- }
-
- public bool Equals(XmlBool other) => other != null && _value == other._value;
-
- public bool Equals(bool? other) => other != null && _value == other;
-
- public static implicit operator bool?(XmlBool xmlBool) => xmlBool._value;
-
- public static implicit operator bool(XmlBool xmlBool) => xmlBool._value ?? false;
-
- public static implicit operator XmlBool(bool? value) => new XmlBool(value);
-
- public static implicit operator XmlBool(bool value) => new XmlBool(value);
-
- //https://www.codeproject.com/Articles/43237/How-to-Implement-IXmlSerializable-Correctly
- public XmlSchema GetSchema() => null;
- public void ReadXml(XmlReader reader)
- {
- reader.MoveToContent();
- _value = reader.IsEmptyElement ? null : new bool?(bool.Parse(reader.ReadElementContentAsString().ToLowerInvariant()));
- }
-
- public void WriteXml(XmlWriter writer) => writer.WriteValue(_value.ToString().ToLowerInvariant());
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldContent.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldContent.cs
deleted file mode 100644
index efb7c3262a2f..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldContent.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- public class OldContent
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldItemGroup.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldItemGroup.cs
deleted file mode 100644
index 089eee3facd3..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldItemGroup.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- public class OldItemGroup
- {
- [XmlElement("Reference")]
- public List References { get; set; }
-
- [XmlElement("ProjectReference")]
- public List ProjectReferences { get; set; }
-
- [XmlElement("None")]
- public List NoneItems { get; set; }
-
- [XmlElement("Content")]
- public List ContentItems { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldNone.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldNone.cs
deleted file mode 100644
index 1449e81a5719..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldNone.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- public class OldNone
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlElement("Link")]
- public string Link { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldProjectDefinition.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldProjectDefinition.cs
deleted file mode 100644
index 96e1754c5dfa..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldProjectDefinition.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- //https://stackoverflow.com/questions/22083548/deserialize-a-portion-of-xml-into-classes#comment33618910_22085008
- [XmlRoot("Project", Namespace = "http://schemas.microsoft.com/developer/msbuild/2003")]
- public class OldProjectDefinition
- {
- //https://stackoverflow.com/a/10518657/294804
- [XmlElement("PropertyGroup")]
- public List PropertyGroups { get; set; }
-
- [XmlElement("ItemGroup")]
- public List ItemGroups { get; set; }
-
- [XmlIgnore]
- public string FilePath { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldProjectReference.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldProjectReference.cs
deleted file mode 100644
index e6b0820a08ef..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldProjectReference.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- public class OldProjectReference
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldPropertyGroup.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldPropertyGroup.cs
deleted file mode 100644
index ecc030c984d7..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldPropertyGroup.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- public class OldPropertyGroup
- {
- [XmlElement("RootNamespace")]
- public string RootNamespace { get; set; }
-
- [XmlElement("AssemblyName")]
- public string AssemblyName { get; set; }
-
- [XmlElement("OutputPath")]
- public string OutputPath { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldReference.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldReference.cs
deleted file mode 100644
index 45cb929a7d80..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/OldModel/OldReference.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Xml.Serialization;
-
-namespace NetCoreCsProjSync.OldModel
-{
- [Serializable]
- public class OldReference
- {
- [XmlAttribute("Include")]
- public string Include { get; set; }
-
- [XmlElement("HintPath")]
- public string HintPath { get; set; }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NetCoreCsProjSync/Program.cs b/tools/NetCoreCsProjSync/NetCoreCsProjSync/Program.cs
deleted file mode 100644
index b677877633c3..000000000000
--- a/tools/NetCoreCsProjSync/NetCoreCsProjSync/Program.cs
+++ /dev/null
@@ -1,201 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Xml;
-using System.Xml.Serialization;
-using NetCoreCsProjSync.NewModel;
-using static NetCoreCsProjSync.NetCoreCsProjGenerator;
-
-namespace NetCoreCsProjSync
-{
- public static class Program
- {
- private const string Validate = "-v";
- private const string Create = "-c";
- private const string TestProj = "-t";
- private const string CreateTest = "-s";
-
- private static readonly Dictionary> ModeMap = new Dictionary>
- {
- { Validate, ValidateCsProjFiles },
- { Create, CreateCsProjFiles },
- { TestProj, TestCsProjFiles },
- { CreateTest, CreateTestCsProjFiles }
- };
-
- public static void Main(string[] args)
- {
- var rmPath = args.FirstOrDefault(a => !ModeMap.ContainsKey(a.ToLower())) ?? @"..\..\..\src";
- if (!Directory.Exists(rmPath))
- {
- throw new ArgumentException($"Directory [{rmPath}] does not exist");
- }
- //https://stackoverflow.com/a/17563994/294804
- var mode = ModeMap.Keys.FirstOrDefault(k => args.Any(a => a.IndexOf(k, StringComparison.InvariantCultureIgnoreCase) >= 0)) ?? Validate;
- ModeMap[mode](rmPath);
- }
-
- private static void CreateTestCsProjFiles(string srcPath)
- {
- var projectFolders = GetTestProjectFolderPaths(srcPath);
- var desktopFilePaths = GetTestDesktopFilePaths(projectFolders).Where(fp => !fp.EndsWith("Commands.Common.Tests.csproj"));
- var desktopDefinitions = GetDesktopDefinitions(desktopFilePaths);
-
- var serializer = new XmlSerializer(typeof(NewProjectDefinition));
- foreach (var desktopDefinition in desktopDefinitions)
- {
- var path = ConvertDesktopToNetCorePath(desktopDefinition.FilePath);
- Console.WriteLine($"Creating {path}");
-
- var netCoreDefinition = ConvertOldTestToNewTestNetCore(desktopDefinition);
- WriteProjectFile(serializer, netCoreDefinition, path);
- }
- }
-
- private static void TestCsProjFiles(string srcPath)
- {
- var projectFolders = GetTestProjectFolderPaths(srcPath);
- var desktopFilePaths = GetTestDesktopFilePaths(projectFolders).Where(fp => !fp.EndsWith("Commands.Common.Tests.csproj"));
- var desktopDefinitions = GetDesktopDefinitions(desktopFilePaths);
-
- desktopDefinitions.SelectMany(d => d.ItemGroups.SelectMany(ig => ig.References.Select(or => ConvertOldToNewPackageReference(or, Enumerable.Empty()))))
- .Where(p => p != null)
- .GroupBy(p => $"{p.Include}: {p.Version}", (k, r) => (Reference: k, Count: r.Count())).Select(g => $"{g.Reference}: {g.Count}")
- .OrderBy(g => g)
- .ToList().ForEach(Console.WriteLine);
- }
-
- private static void ValidateCsProjFiles(string rmPath)
- {
- var projectFolders = GetProjectFolderPaths(rmPath, true);
- var desktopFilePaths = GetDesktopFilePaths(projectFolders);
- var desktopDefinitions = GetDesktopDefinitions(desktopFilePaths);
-
- foreach (var desktopDefinition in desktopDefinitions)
- {
- var netCorePath = ConvertDesktopToNetCorePath(desktopDefinition.FilePath);
- var desktopFileName = Path.GetFileNameWithoutExtension(desktopDefinition.FilePath);
- var moduleName = desktopFileName.Replace("Commands.", String.Empty);
- var netCoreFileName = Path.GetFileNameWithoutExtension(netCorePath);
- if (!File.Exists(netCorePath) || ModuleSkipList.Contains(moduleName))
- {
- var priorColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Yellow;
- Console.WriteLine($"Skipping {netCoreFileName}");
- Console.ForegroundColor = priorColor;
- continue;
- }
-
- Console.WriteLine($"Validating {netCoreFileName}");
- var oldReferences = desktopDefinition.ItemGroups.Where(ig => ig.References?.Any() ?? false).SelectMany(ig => ig.References).ToArray();
- var managementPackageNames = ModuleMap.ContainsKey(moduleName) ? ModuleMap[moduleName] : new List { $"Management.{moduleName}" } ;
- foreach (var managementPackageName in managementPackageNames)
- {
- var oldManagementReference = oldReferences.FirstOrDefault(r => (r?.Include?.Contains(managementPackageName) ?? false) || (r?.HintPath?.Contains(managementPackageName) ?? false));
- if (oldManagementReference == null)
- {
- var priorColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine($"{desktopFileName}: Could not locate management library containing {managementPackageName}");
- Console.ForegroundColor = priorColor;
- Environment.ExitCode = 1;
- continue;
- }
-
- var serializer = new XmlSerializer(typeof(NewProjectDefinition));
- NewProjectDefinition netCoreDefinition;
- using (var fileStream = new FileStream(netCorePath, FileMode.Open))
- {
- netCoreDefinition = (NewProjectDefinition)serializer.Deserialize(fileStream);
- }
-
- var newPackageReferences = netCoreDefinition.ItemGroups.Where(ig => ig.PackageReferences?.Any() ?? false).SelectMany(ig => ig.PackageReferences);
- var newManagementReference = newPackageReferences.FirstOrDefault(r => r?.Include?.Contains(managementPackageName) ?? false);
- if (newManagementReference == null)
- {
- var priorColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine($"{netCoreFileName}: Could not locate management library containing {managementPackageName}");
- Console.ForegroundColor = priorColor;
- Environment.ExitCode = 1;
- continue;
- }
-
- var oldVersionString = GetVersionString(oldManagementReference);
- var oldVersion = StringToVersion(oldVersionString);
- var newVersionString = newManagementReference.Version;
- var newVersion = StringToVersion(newVersionString);
- // ReSharper disable once InvertIf
- if (oldVersion > newVersion)
- {
- var priorColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine($"Version mismatch: {oldVersionString} > {newVersionString} : {managementPackageName}");
- Console.ForegroundColor = priorColor;
- Environment.ExitCode = 1;
- }
- }
- }
- }
-
- private static void CreateCsProjFiles(string rmPath)
- {
- var projectFolders = GetProjectFolderPaths(rmPath);
- var desktopFilePaths = GetDesktopFilePaths(projectFolders);
- var desktopDefinitions = GetDesktopDefinitions(desktopFilePaths);
-
- var serializer = new XmlSerializer(typeof(NewProjectDefinition));
- foreach (var desktopDefinition in desktopDefinitions)
- {
- var path = ConvertDesktopToNetCorePath(desktopDefinition.FilePath);
- Console.WriteLine($"Creating {path}");
-
- var netCoreDefinition = ConvertOldToNewNetCore(desktopDefinition);
- WriteProjectFile(serializer, netCoreDefinition, path);
- }
- }
-
- private static void WriteProjectFile(XmlSerializer serializer, NewProjectDefinition netCoreDefinition, string path)
- {
- //https://stackoverflow.com/a/760290/294804
- //https://stackoverflow.com/a/3732234/294804
- var blankNamespaces = new XmlSerializerNamespaces(new[] { XmlQualifiedName.Empty });
- var xmlSettings = new XmlWriterSettings { OmitXmlDeclaration = true, Indent = true };
- using (var stringWriter = new StringWriter())
- using (var xmlWriter = XmlWriter.Create(stringWriter, xmlSettings))
- {
- serializer.Serialize(xmlWriter, netCoreDefinition, blankNamespaces);
- var lines = stringWriter.ToString().Split(Environment.NewLine).ToList();
- var newLineIndecies = lines.Select((l, i) => (Index: i, Line: l)).Where(a =>
- a.Line.StartsWith("") || a.Line.StartsWith("
"))
- .Select(a => a.Index).ToList();
-
- for (var i = 0; i < newLineIndecies.Count; ++i)
- {
- lines.Insert(newLineIndecies[i] + i + 1, String.Empty);
- }
- File.WriteAllLines(path, lines.Take(lines.Count - 1));
- using (var streamWriter = File.AppendText(path))
- {
- streamWriter.Write(lines.Last());
- }
- }
- }
- }
-}
diff --git a/tools/NetCoreCsProjSync/NuGet.Config b/tools/NetCoreCsProjSync/NuGet.Config
deleted file mode 100644
index 1af0ff23d470..000000000000
--- a/tools/NetCoreCsProjSync/NuGet.Config
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync.sln b/tools/NetCorePsd1Sync/NetCorePsd1Sync.sln
deleted file mode 100644
index 7568fbfdbf51..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.27130.2027
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCorePsd1Sync", "NetCorePsd1Sync\NetCorePsd1Sync.csproj", "{A2A13F2A-7E1A-4E16-B933-B7CAC2AC6B7A}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {A2A13F2A-7E1A-4E16-B933-B7CAC2AC6B7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {A2A13F2A-7E1A-4E16-B933-B7CAC2AC6B7A}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {A2A13F2A-7E1A-4E16-B933-B7CAC2AC6B7A}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {A2A13F2A-7E1A-4E16-B933-B7CAC2AC6B7A}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {A1F9EDFD-FA4D-487E-B740-AD26183A6E47}
- EndGlobalSection
-EndGlobal
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync.sln.DotSettings b/tools/NetCorePsd1Sync/NetCorePsd1Sync.sln.DotSettings
deleted file mode 100644
index 934e2dcd6060..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync.sln.DotSettings
+++ /dev/null
@@ -1,3 +0,0 @@
-
- SOLUTION
- C:\Users\miyanni\AppData\Local\JetBrains\Transient\ReSharperPlatformVs15\v09_53a45c4a\SolutionCaches
\ No newline at end of file
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/ModuleReference.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/ModuleReference.cs
deleted file mode 100644
index 58c8392d8d84..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/ModuleReference.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.ComponentModel;
-using NetCorePsd1Sync.Utility;
-using static NetCorePsd1Sync.Model.PsDefinitionConstants;
-
-namespace NetCorePsd1Sync.Model
-{
- public class ModuleReference
- {
- [DisplayName("ModuleName")]
- public string ModuleName { get; set; }
-
- [DisplayName("ModuleVersion")]
- public Version ModuleVersion { get; set; }
-
- [DisplayName("GUID")]
- public Guid? Guid { get; set; }
-
- public override string ToString()
- {
- if (String.IsNullOrEmpty(ModuleName))
- {
- throw new ArgumentException($"{nameof(ModuleName)} cannot be null or empty");
- }
-
- if (ModuleVersion == null && Guid == null)
- {
- return $"{ElementPrefix}{ModuleName}{ElementPostfix}";
- }
-
- var moduleDisplayName = AttributeHelper.GetPropertyAttributeValue(mr => mr.ModuleName, attr => attr.DisplayName, nameof(ModuleName));
- var line = $"{ObjectPrefix}{moduleDisplayName}{NameValueDelimiter}{ElementPrefix}{ModuleName}{ElementPostfix}{NameValuePostfix}";
- if (ModuleVersion != null)
- {
- var versionDisplayName = AttributeHelper.GetPropertyAttributeValue(mr => mr.ModuleVersion, attr => attr.DisplayName, nameof(ModuleVersion));
- line += $"{versionDisplayName}{NameValueDelimiter}{ElementPrefix}{ModuleVersion}{ElementPostfix}{NameValuePostfix}";
- }
- // ReSharper disable once InvertIf
- if (Guid != null)
- {
- var guidDisplayName = AttributeHelper.GetPropertyAttributeValue(mr => mr.Guid, attr => attr.DisplayName, nameof(Guid));
- line += $"{guidDisplayName}{NameValueDelimiter}{ElementPrefix}{Guid}{ElementPostfix}{NameValuePostfix}";
- }
- return $"{line}{ObjectPostfix}";
- }
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PrivateData.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PrivateData.cs
deleted file mode 100644
index 1a689017c9de..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PrivateData.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System.ComponentModel;
-
-namespace NetCorePsd1Sync.Model
-{
- public class PrivateData
- {
- [DisplayName("PSData")]
- public PsData PsData { get; set; } = new PsData();
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsData.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsData.cs
deleted file mode 100644
index 79dcc07c990a..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsData.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-
-namespace NetCorePsd1Sync.Model
-{
- public class PsData
- {
- [DisplayName("Tags")]
- [Description("Tags applied to this module. These help with module discovery in online galleries.")]
- public List Tags { get; set; }
-
- [DisplayName("LicenseUri")]
- [Description("A URL to the license for this module.")]
- public Uri LicenseUri { get; set; }
-
- [DisplayName("ProjectUri")]
- [Description("A URL to the main website for this project.")]
- public Uri ProjectUri { get; set; }
-
- [DisplayName("IconUri")]
- [Description("A URL to an icon representing this module.")]
- public Uri IconUri { get; set; }
-
- [DisplayName("ReleaseNotes")]
- [Description("ReleaseNotes of this module")]
- public string ReleaseNotes { get; set; }
-
- [DisplayName("Prerelease")]
- [Description("Prerelease string of this module")]
- public string Prerelease { get; set; }
-
- [DisplayName("RequireLicenseAcceptance")]
- [Description("Flag to indicate whether the module requires explicit user acceptance for install/update/save")]
- public bool? RequireLicenseAcceptance { get; set; }
-
- [DisplayName("ExternalModuleDependencies")]
- [Description("External dependent modules of this module")]
- public List ExternalModuleDependencies { get; set; }
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinition.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinition.cs
deleted file mode 100644
index 3395aba03bd1..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinition.cs
+++ /dev/null
@@ -1,146 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Reflection;
-
-namespace NetCorePsd1Sync.Model
-{
- public class PsDefinition
- {
- public PsDefinitionHeader ManifestHeader { get; set; } = new PsDefinitionHeader();
-
- [DisplayName("RootModule")]
- [Description("Script module or binary module file associated with this manifest.")]
- public string RootModule { get; set; }
-
- [DisplayName("ModuleVersion")]
- [Description("Version number of this module.")]
- public Version ModuleVersion { get; set; } = new Version(1, 0);
-
- [DisplayName("CompatiblePSEditions")]
- [Description("Supported PSEditions")]
- public List CompatiblePsEditions { get; set; }
-
- [DisplayName("GUID")]
- [Description("ID used to uniquely identify this module")]
- public Guid Guid { get; set; } = Guid.NewGuid();
-
- [DisplayName("Author")]
- [Description("Author of this module")]
- public string Author { get; set; } = Environment.UserName;
-
- [DisplayName("CompanyName")]
- [Description("Company or vendor of this module")]
- public string CompanyName { get; set; } = "Unknown";
-
- [DisplayName("Copyright")]
- [Description("Copyright statement for this module")]
- public string Copyright { get; set; } = $"(c) {DateTime.Now.Year} {Environment.UserName}. All rights reserved.";
-
- [DisplayName("Description")]
- [Description("Description of the functionality provided by this module")]
- public string Description { get; set; }
-
- [DisplayName("PowerShellVersion")]
- [Description("Minimum version of the Windows PowerShell engine required by this module")]
- public Version PowerShellVersion { get; set; }
-
- [DisplayName("PowerShellHostName")]
- [Description("Name of the Windows PowerShell host required by this module")]
- public string PowerShellHostName { get; set; }
-
- [DisplayName("PowerShellHostVersion")]
- [Description("Minimum version of the Windows PowerShell host required by this module")]
- public Version PowerShellHostVersion { get; set; }
-
- [DisplayName("DotNetFrameworkVersion")]
- [Description("Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.")]
- public Version DotNetFrameworkVersion { get; set; }
-
- [DisplayName("CLRVersion")]
- [Description("Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.")]
- public Version ClrVersion { get; set; }
-
- [DisplayName("ProcessorArchitecture")]
- [Description("Processor architecture (None, X86, Amd64) required by this module")]
- public ProcessorArchitecture? ProcessorArchitecture { get; set; }
-
- [DisplayName("RequiredModules")]
- [Description("Modules that must be imported into the global environment prior to importing this module")]
- public List RequiredModules { get; set; }
-
- [DisplayName("RequiredAssemblies")]
- [Description("Assemblies that must be loaded prior to importing this module")]
- public List RequiredAssemblies { get; set; }
-
- [DisplayName("ScriptsToProcess")]
- [Description("Script files (.ps1) that are run in the caller's environment prior to importing this module.")]
- public List ScriptsToProcess { get; set; }
-
- [DisplayName("TypesToProcess")]
- [Description("Type files (.ps1xml) to be loaded when importing this module")]
- public List TypesToProcess { get; set; }
-
- [DisplayName("FormatsToProcess")]
- [Description("Format files (.ps1xml) to be loaded when importing this module")]
- public List FormatsToProcess { get; set; }
-
- [DisplayName("NestedModules")]
- [Description("Modules to import as nested modules of the module specified in RootModule/ModuleToProcess")]
- public List NestedModules { get; set; }
-
- [DisplayName("FunctionsToExport")]
- [Description("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.")]
- public List FunctionsToExport { get; set; } = new List();
-
- [DisplayName("CmdletsToExport")]
- [Description("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.")]
- public List CmdletsToExport { get; set; } = new List();
-
- [DisplayName("VariablesToExport")]
- [Description("Variables to export from this module")]
- public List VariablesToExport { get; set; } = new List { "*" };
-
- [DisplayName("AliasesToExport")]
- [Description("Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.")]
- public List AliasesToExport { get; set; } = new List();
-
- [DisplayName("DscResourcesToExport")]
- [Description("DSC resources to export from this module")]
- public List DscResourcesToExport { get; set; }
-
- [DisplayName("ModuleList")]
- [Description("List of all modules packaged with this module")]
- public List ModuleList { get; set; }
-
- [DisplayName("FileList")]
- [Description("List of all files packaged with this module")]
- public List FileList { get; set; }
-
- [DisplayName("PrivateData")]
- [Description("Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.")]
- public PrivateData PrivateData { get; set; } = new PrivateData();
-
- [DisplayName("HelpInfoURI")]
- [Description("HelpInfo URI of this module")]
- public string HelpInfoUri { get; set; }
-
- [DisplayName("DefaultCommandPrefix")]
- [Description("Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.")]
- public string DefaultCommandPrefix { get; set; }
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinitionConstants.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinitionConstants.cs
deleted file mode 100644
index 2c22d39bf06f..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinitionConstants.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-namespace NetCorePsd1Sync.Model
-{
- internal static class PsDefinitionConstants
- {
- public const string CommentToken = "#";
- public const string CommentPrefix = CommentToken + " ";
- public const string ElementPrefix = "'";
- public const string ElementPostfix = "'";
- public const string ObjectListPrefix = "@(";
- public const string ObjectListPostfix = ")";
- public const string ObjectPrefix = "@{";
- public const string ObjectPostfix = "}";
- public const string NameValueDelimiter = " = ";
- public const string NameValuePostfix = "; ";
- public const string Indent = " ";
- public const string HeaderDelimiter = ": ";
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinitionHeader.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinitionHeader.cs
deleted file mode 100644
index 940a2156c848..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Model/PsDefinitionHeader.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.ComponentModel;
-
-namespace NetCorePsd1Sync.Model
-{
- public class PsDefinitionHeader
- {
- [DisplayName("Module manifest for module")]
- public string ModuleName { get; set; }
-
- [DisplayName("Generated by")]
- public string Author { get; set; } = Environment.UserName;
-
- [DisplayName("Generated on")]
- public DateTime Date { get; set; } = DateTime.Now;
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCoreDefinitionGenerator.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCoreDefinitionGenerator.cs
deleted file mode 100644
index 7227156efbfc..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCoreDefinitionGenerator.cs
+++ /dev/null
@@ -1,217 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.IO;
-using System.Linq;
-using System.Management.Automation;
-using System.Reflection;
-using NetCorePsd1Sync.Model;
-using NetCorePsd1Sync.Utility;
-using static NetCorePsd1Sync.Model.PsDefinitionConstants;
-
-namespace NetCorePsd1Sync
-{
- internal static class NetCoreDefinitionGenerator
- {
- private const string Psd1Extension = @".psd1";
- private const string Psd1Filter = @"*" + Psd1Extension;
- private const string NetCorePsd1Extension = @".Netcore" + Psd1Extension;
- private const string NetCoreFilter = @"*" + NetCorePsd1Extension;
-
- private static readonly Version NetCoreModuleVersion = new Version(0, 10, 0);
- private const string NetCoreCompatiblePsEdition = "Core";
- private static readonly Version NetCorePsVersion = new Version(5, 1);
-
- // https://stackoverflow.com/a/25245678/294804
- public static IEnumerable GetModulePaths(string rmPath, bool ignoreExisting = false) =>
- Directory.EnumerateDirectories(rmPath).Where(d =>
- Directory.EnumerateFiles(d, Psd1Filter, SearchOption.AllDirectories).Any() &&
- (ignoreExisting || !Directory.EnumerateFiles(d, NetCoreFilter, SearchOption.AllDirectories).Any()));
-
- public static IEnumerable GetDesktopFilePaths(IEnumerable modulePaths) =>
- modulePaths.Select(m => Directory.EnumerateFiles(m, Psd1Filter, SearchOption.AllDirectories).First(f => !f.Contains(NetCorePsd1Extension)));
-
- public static string ConvertDesktopToNetCorePath(string desktopPath) =>
- Path.Combine(Path.GetDirectoryName(desktopPath), Path.GetFileNameWithoutExtension(desktopPath) + NetCorePsd1Extension);
-
- public static PsDefinitionHeader ReadDefinitionHeader(string path)
- {
- var lines = File.ReadAllLines(path);
-
- var moduleDisplayName = AttributeHelper.GetPropertyAttributeValue(pd => pd.ModuleName, attr => attr.DisplayName, String.Empty);
- var nameLine = lines.First(l => l.Contains(moduleDisplayName));
- var nameLinePrefixIndex = nameLine.IndexOf(ElementPrefix, StringComparison.Ordinal);
- var name = nameLine.Substring(nameLinePrefixIndex + ElementPrefix.Length, nameLine.LastIndexOf(ElementPostfix, StringComparison.Ordinal) - (nameLinePrefixIndex + ElementPrefix.Length));
-
- var authorDisplayName = AttributeHelper.GetPropertyAttributeValue(pd => pd.Author, attr => attr.DisplayName, String.Empty);
- var authorLine = lines.First(l => l.Contains(authorDisplayName));
- var authorLineDelimiterIndex = authorLine.IndexOf(HeaderDelimiter, StringComparison.Ordinal);
- var author = authorLine.Substring(authorLineDelimiterIndex + HeaderDelimiter.Length);
-
- var dateDisplayName = AttributeHelper.GetPropertyAttributeValue(pd => pd.Date, attr => attr.DisplayName, String.Empty);
- var dateLine = lines.First(l => l.Contains(dateDisplayName));
- var dateLineDelimiterIndex = dateLine.IndexOf(HeaderDelimiter, StringComparison.Ordinal);
- var date = dateLine.Substring(dateLineDelimiterIndex + HeaderDelimiter.Length);
-
- return new PsDefinitionHeader
- {
- ModuleName = name,
- Author = author,
- Date = DateTime.Parse(date)
- };
- }
-
- public static Hashtable GetHashtable(PowerShell powershell, string path)
- {
- var script = $"Get-Content '{path}' | Out-String | Invoke-Expression";
- powershell.AddScript(script);
- if (!(powershell.Invoke().First().BaseObject is Hashtable hashtable))
- {
- throw new FileFormatException("Missing manifest hashtable data");
- }
- hashtable.Add("FilePath", path);
- return hashtable;
- }
-
- public static IEnumerable GetHashtables(IEnumerable filePaths)
- {
- using (var powershell = PowerShell.Create())
- {
- foreach (var path in filePaths)
- {
- yield return GetHashtable(powershell, path);
- }
- }
- }
-
- public static PsDefinition CreateNewNetCoreDefinition(Hashtable desktopData)
- {
- var psData = new PsData();
- var desktopPsData = desktopData.GetValueAsHashtable("PrivateData").GetValueAsHashtable("PSData");
- if (desktopPsData.Any())
- {
- psData = new PsData
- {
- Tags = desktopPsData.GetValueAsStringList("Tags"),
- LicenseUri = new Uri(desktopPsData.GetValueAsString("LicenseUri")),
- ProjectUri = new Uri(desktopPsData.GetValueAsString("ProjectUri")),
- ReleaseNotes = String.Empty,
- Prerelease = desktopPsData.ContainsKey("Prerelease") ? desktopPsData.GetValueAsString("Prerelease") : null
- };
- }
-
- var filename = Path.GetFileNameWithoutExtension(desktopData.GetValueAsString("FilePath"));
- var typesToProcess = desktopData.GetValueAsStringList("TypesToProcess");
- var formatsToProcess = desktopData.GetValueAsStringList("FormatsToProcess");
- return new PsDefinition
- {
- ManifestHeader = new PsDefinitionHeader { ModuleName = filename, Author = desktopData.GetValueAsString("Author") },
- ModuleVersion = NetCoreModuleVersion,
- CompatiblePsEditions = new List { NetCoreCompatiblePsEdition },
- Author = desktopData.GetValueAsString("Author"),
- CompanyName = desktopData.GetValueAsString("CompanyName"),
- Copyright = desktopData.GetValueAsString("Copyright"),
- Description = $"[PowerShell .Net Core] {desktopData.GetValueAsString("Description")}",
- PowerShellVersion = NetCorePsVersion,
- RequiredModules = new List { new ModuleReference { ModuleName = "AzureRM.Profile.Netcore", ModuleVersion = NetCoreModuleVersion } },
- RequiredAssemblies = desktopData.GetValueAsStringList("RequiredAssemblies"),
- TypesToProcess = typesToProcess.Any() ? typesToProcess : null,
- FormatsToProcess = formatsToProcess.Any() ? formatsToProcess : null,
- NestedModules = desktopData.GetValueAsStringList("NestedModules").Select(m => new ModuleReference { ModuleName = m }).ToList(),
- AliasesToExport = desktopData.GetValueAsStringList("AliasesToExport"),
- CmdletsToExport = desktopData.GetValueAsStringList("CmdletsToExport"),
- VariablesToExport = null,
- PrivateData = new PrivateData { PsData = psData }
- };
- }
-
- private static ModuleReference CreateModuleReferenceFromHashtable(Hashtable data)
- {
- var guid = data.GetValueAsStringOrDefault("GUID");
- return new ModuleReference
- {
- ModuleName = data.GetValueAsStringOrDefault("ModuleName"),
- ModuleVersion = data.GetValueAsVersionOrDefault("ModuleVersion"),
- Guid = String.IsNullOrEmpty(guid) ? (Guid?)null : Guid.Parse(guid)
- };
- }
-
- private static List CreateModuleReferenceList(Hashtable data, string key) =>
- data.GetValueAsArrayOrDefault(key)?.OfType().Select(CreateModuleReferenceFromHashtable).ToList();
-
- public static PsDefinition CreateDefinitionFromExisting(Hashtable existingDefinition, PsDefinitionHeader existingHeader)
- {
- var psData = new PsData();
- var existingPsData = existingDefinition.GetValueAsHashtable("PrivateData").GetValueAsHashtable("PSData");
- if (existingPsData.Any())
- {
- var licenseUri = existingPsData.GetValueAsStringOrDefault("LicenseUri");
- var projectUri = existingPsData.GetValueAsStringOrDefault("ProjectUri");
- var iconUri = existingPsData.GetValueAsStringOrDefault("IconUri");
- var requireLicenseAcceptance = existingPsData.GetValueAsStringOrDefault("RequireLicenseAcceptance");
- psData = new PsData
- {
- Tags = existingPsData.GetValueAsStringListOrDefault("Tags"),
- LicenseUri = String.IsNullOrEmpty(licenseUri) ? null : new Uri(licenseUri),
- ProjectUri = String.IsNullOrEmpty(projectUri) ? null : new Uri(projectUri),
- IconUri = String.IsNullOrEmpty(iconUri) ? null : new Uri(iconUri),
- ReleaseNotes = existingPsData.GetValueAsStringOrDefault("ReleaseNotes"),
- Prerelease = existingPsData.GetValueAsStringOrDefault("Prerelease"),
- RequireLicenseAcceptance = String.IsNullOrEmpty(requireLicenseAcceptance) ? (bool?)null : Boolean.Parse(requireLicenseAcceptance),
- ExternalModuleDependencies = CreateModuleReferenceList(existingPsData, "ExternalModuleDependencies")
- };
- }
-
- var processorArchitecture = existingDefinition.GetValueAsStringOrDefault("ProcessorArchitecture");
- return new PsDefinition
- {
- ManifestHeader = existingHeader,
- RootModule = existingDefinition.GetValueAsStringOrDefault("RootModule"),
- ModuleVersion = existingDefinition.GetValueAsVersionOrDefault("ModuleVersion"),
- CompatiblePsEditions = existingDefinition.GetValueAsStringListOrDefault("CompatiblePSEditions"),
- Guid = Guid.Parse(existingDefinition.GetValueAsStringOrDefault("GUID")),
- Author = existingDefinition.GetValueAsStringOrDefault("Author"),
- CompanyName = existingDefinition.GetValueAsStringOrDefault("CompanyName"),
- Copyright = existingDefinition.GetValueAsStringOrDefault("Copyright"),
- Description = existingDefinition.GetValueAsStringOrDefault("Description"),
- PowerShellVersion = existingDefinition.GetValueAsVersionOrDefault("PowerShellVersion"),
- PowerShellHostName = existingDefinition.GetValueAsStringOrDefault("PowerShellHostName"),
- PowerShellHostVersion = existingDefinition.GetValueAsVersionOrDefault("PowerShellHostVersion"),
- DotNetFrameworkVersion = existingDefinition.GetValueAsVersionOrDefault("DotNetFrameworkVersion"),
- ClrVersion = existingDefinition.GetValueAsVersionOrDefault("CLRVersion"),
- ProcessorArchitecture = processorArchitecture != null ? Enum.Parse(processorArchitecture) : (ProcessorArchitecture?)null,
- RequiredModules = CreateModuleReferenceList(existingDefinition, "RequiredModules"),
- RequiredAssemblies = existingDefinition.GetValueAsStringListOrDefault("RequiredAssemblies"),
- ScriptsToProcess = existingDefinition.GetValueAsStringListOrDefault("ScriptsToProcess"),
- TypesToProcess = existingDefinition.GetValueAsStringListOrDefault("TypesToProcess"),
- FormatsToProcess = existingDefinition.GetValueAsStringListOrDefault("FormatsToProcess"),
- NestedModules = existingDefinition.GetValueAsStringListOrDefault("NestedModules")?.Select(m => new ModuleReference { ModuleName = m }).ToList(),
- FunctionsToExport = existingDefinition.GetValueAsStringListOrDefault("FunctionsToExport"),
- CmdletsToExport = existingDefinition.GetValueAsStringListOrDefault("CmdletsToExport"),
- VariablesToExport = existingDefinition.GetValueAsStringListOrDefault("VariablesToExport"),
- AliasesToExport = existingDefinition.GetValueAsStringListOrDefault("AliasesToExport"),
- DscResourcesToExport = existingDefinition.GetValueAsStringListOrDefault("DscResourcesToExport"),
- ModuleList = CreateModuleReferenceList(existingDefinition, "ModuleList"),
- FileList = existingDefinition.GetValueAsStringListOrDefault("FileList"),
- PrivateData = new PrivateData { PsData = psData },
- HelpInfoUri = existingDefinition.GetValueAsStringOrDefault("HelpInfoURI"),
- DefaultCommandPrefix = existingDefinition.GetValueAsStringOrDefault("DefaultCommandPrefix")
- };
- }
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCorePsd1Sync.csproj b/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCorePsd1Sync.csproj
deleted file mode 100644
index d12a7d7b90e2..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCorePsd1Sync.csproj
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Exe
- netcoreapp3.1;net472
-
-
-
- latest
-
-
-
-
-
-
-
-
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCorePsd1Sync.csproj.DotSettings b/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCorePsd1Sync.csproj.DotSettings
deleted file mode 100644
index 58ad6c885496..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/NetCorePsd1Sync.csproj.DotSettings
+++ /dev/null
@@ -1,2 +0,0 @@
-
- CSharp71
\ No newline at end of file
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Program.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Program.cs
deleted file mode 100644
index 2a1f03b6290a..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Program.cs
+++ /dev/null
@@ -1,186 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Management.Automation;
-using NetCorePsd1Sync.Model;
-using NetCorePsd1Sync.Utility;
-using static NetCorePsd1Sync.NetCoreDefinitionGenerator;
-
-namespace NetCorePsd1Sync
-{
- public static class Program
- {
- private const string Validate = "-v";
- private const string Create = "-c";
- private const string UpdateVersion = "-u";
-
- private static readonly Dictionary> ModeMap = new Dictionary>
- {
- { Validate, ValidateDefinitionFiles },
- { Create, CreateDefinitionFiles },
- { UpdateVersion, p => UpdateModuleVersions(p, _newVersion) }
- };
-
- private static Version _newVersion;
-
- public static void Main(string[] args)
- {
- var rmPath = args.FirstOrDefault(a => !ModeMap.ContainsKey(a.ToLower()) && !Version.TryParse(a, out var _)) ?? @"..\..\..\src";
- if (!Directory.Exists(rmPath))
- {
- throw new ArgumentException($"Directory [{rmPath}] does not exist");
- }
- //https://stackoverflow.com/a/17563994/294804
- var mode = ModeMap.Keys.FirstOrDefault(k => args.Any(a => a.IndexOf(k, StringComparison.InvariantCultureIgnoreCase) >= 0)) ?? Validate;
- if(mode == UpdateVersion)
- {
- var newVersion = args.FirstOrDefault(a => Version.TryParse(a, out var _));
- if (newVersion == null)
- {
- throw new ArgumentException($"Module update version must be provided");
- }
- _newVersion = Version.Parse(newVersion);
- }
- ModeMap[mode](rmPath);
- }
-
- private static void UpdateModuleVersions(string rmPath, Version newVersion)
- {
- var modulePaths = GetModulePaths(rmPath, true);
- var desktopFilePaths = GetDesktopFilePaths(modulePaths);
- var netCoreFilePaths = desktopFilePaths.Select(ConvertDesktopToNetCorePath).Where(File.Exists).ToList();
- netCoreFilePaths.Add(Path.Combine(rmPath, @"..\Storage\Commands.Storage\Azure.Storage.Netcore.psd1"));
- netCoreFilePaths.Add(Path.Combine(rmPath, @"..\..\tools\AzureRM.Netcore\AzureRM.Netcore.psd1"));
- netCoreFilePaths.Add(Path.Combine(rmPath, @"AnalysisServices\Commands.AnalysisServices.Dataplane\Azure.AnalysisServices.Netcore.psd1"));
- var netCoreHashTables = GetHashtables(netCoreFilePaths);
-
- foreach (var netCoreHashtable in netCoreHashTables)
- {
- var netCoreFilePath = netCoreHashtable.GetValueAsString("FilePath");
- var definitionContent = File.ReadAllLines(netCoreFilePath);
- const string moduleNameLeader = "# Module manifest for module ";
- var headerModuleName = definitionContent.First(c => c.StartsWith(moduleNameLeader)).Replace(moduleNameLeader, String.Empty).Replace("'", String.Empty);
- const string authorLeader = "# Generated by: ";
- var headerAuthor = definitionContent.First(c => c.StartsWith(authorLeader)).Replace(authorLeader, String.Empty);
- const string dateLeader = "# Generated on: ";
- var headerDate = DateTime.Parse(definitionContent.First(c => c.StartsWith(dateLeader)).Replace(dateLeader, String.Empty));
- Console.WriteLine($"Updating {netCoreFilePath} to version {newVersion}");
- var netCoreDefinition = CreateDefinitionFromExisting(netCoreHashtable, new PsDefinitionHeader { ModuleName = headerModuleName, Author = headerAuthor, Date = headerDate });
- netCoreDefinition.ModuleVersion = newVersion;
- foreach (var requiredModule in netCoreDefinition.RequiredModules ?? Enumerable.Empty())
- {
- requiredModule.ModuleVersion = newVersion;
- }
-
- File.WriteAllLines(netCoreFilePath, netCoreDefinition.ToDefinitionEntry());
- }
- }
-
- private static void ValidateDefinitionFiles(string rmPath)
- {
- var modulePaths = GetModulePaths(rmPath, true);
- var desktopFilePaths = GetDesktopFilePaths(modulePaths);
- var desktopHashtables = GetHashtables(desktopFilePaths);
- foreach (var desktopHashtable in desktopHashtables)
- {
- var netCorePath = ConvertDesktopToNetCorePath(desktopHashtable.GetValueAsString("FilePath"));
- var netCoreFileName = Path.GetFileNameWithoutExtension(netCorePath);
-
- var oldCmdletList = desktopHashtable.GetValueAsStringList("CmdletsToExport");
- var oldAliasesList = desktopHashtable.GetValueAsStringList("AliasesToExport");
- var oldFunctionsList = desktopHashtable.GetValueAsStringList("FunctionsToExport");
- if (!File.Exists(netCorePath) || !(oldCmdletList.Any() || oldAliasesList.Any() || oldFunctionsList.Any()))
- {
- var priorColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Yellow;
- Console.WriteLine($"Skipping {netCoreFileName}");
- Console.ForegroundColor = priorColor;
- continue;
- }
-
- Console.WriteLine($"Validating {netCoreFileName}");
- Hashtable netCoreHashtable;
- using (var powershell = PowerShell.Create())
- {
- netCoreHashtable = GetHashtable(powershell, netCorePath);
- }
-
- var newCmdletList = netCoreHashtable.GetValueAsStringList("CmdletsToExport");
- var newAliasesList = netCoreHashtable.GetValueAsStringList("AliasesToExport");
- var newFunctionsList = netCoreHashtable.GetValueAsStringList("FunctionsToExport");
-
- var missingCmdlets = oldCmdletList.Where(oc => !newCmdletList.Contains(oc)).ToList();
- var missingAliases = oldAliasesList.Where(oa => !newAliasesList.Contains(oa)).ToList();
- var missingFunctions = oldFunctionsList.Where(of => !newFunctionsList.Contains(of)).ToList();
-
- // ReSharper disable once InvertIf
- if (missingCmdlets.Any() || missingAliases.Any() || missingFunctions.Any())
- {
- var priorColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Red;
- if (missingCmdlets.Any())
- {
- Console.WriteLine($"Missing cmdlets: {String.Join(", ", missingCmdlets)} : {netCoreFileName}");
- }
- if (missingAliases.Any())
- {
- Console.WriteLine($"Missing aliases: {String.Join(", ", missingAliases)} : {netCoreFileName}");
- }
- if (missingFunctions.Any())
- {
- Console.WriteLine($"Missing functions: {String.Join(", ", missingFunctions)} : {netCoreFileName}");
- }
- Console.ForegroundColor = priorColor;
- Environment.ExitCode = 1;
- }
- }
- }
-
- private static void CreateDefinitionFiles(string rmPath)
- {
- var modulePaths = GetModulePaths(rmPath);
- var desktopFilePaths = GetDesktopFilePaths(modulePaths);
- var desktopHashtables = GetHashtables(desktopFilePaths);
- foreach (var desktopHashtable in desktopHashtables)
- {
- var netCoreFilePath = ConvertDesktopToNetCorePath(desktopHashtable.GetValueAsString("FilePath"));
- Console.WriteLine($"Creating {netCoreFilePath}");
- var netCoreDefinition = CreateNewNetCoreDefinition(desktopHashtable);
- if (File.Exists(netCoreFilePath))
- {
- using (var powershell = PowerShell.Create())
- {
- var netCoreHashtable = GetHashtable(powershell, netCoreFilePath);
- netCoreDefinition = CreateNewNetCoreDefinition(netCoreHashtable);
- var rootModule = netCoreHashtable.GetValueAsString("RootModule");
- netCoreDefinition.RootModule = rootModule == String.Empty ? null : rootModule;
- netCoreDefinition.Guid = new Guid(netCoreHashtable.GetValueAsString("GUID"));
- netCoreDefinition.Description = netCoreHashtable.GetValueAsString("Description");
- netCoreDefinition.RequiredModules = netCoreHashtable.GetValueAsArray("RequiredModules").Any() ? netCoreDefinition.RequiredModules : null;
-
- var netCoreHeader = ReadDefinitionHeader(netCoreFilePath);
- netCoreDefinition.ManifestHeader.ModuleName = Path.GetFileNameWithoutExtension(desktopHashtable.GetValueAsString("FilePath"));
- netCoreDefinition.ManifestHeader.Date = netCoreHeader.Date;
- }
- }
- File.WriteAllLines(netCoreFilePath, netCoreDefinition.ToDefinitionEntry());
- }
- }
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/AttributeHelper.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/AttributeHelper.cs
deleted file mode 100644
index 9dbc4d9690fb..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/AttributeHelper.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Reflection;
-
-namespace NetCorePsd1Sync.Utility
-{
- public static class AttributeHelper
- {
- // https://stackoverflow.com/a/32501356/294804
- public static bool TryGetPropertyAttributeValue(Expression> propertyExpression, Func valueSelector, out TValue value) where TAttribute : Attribute
- {
- var expression = (MemberExpression)propertyExpression.Body;
- var propertyInfo = (PropertyInfo)expression.Member;
- var attributes = propertyInfo.GetCustomAttributes(typeof(TAttribute), true).OfType().ToArray();
- var isFound = attributes.Any();
- value = isFound ? valueSelector(attributes.First()) : default;
- return isFound;
- }
-
- public static TValue GetPropertyAttributeValue(Expression> propertyExpression, Func valueSelector, TValue defaultValue) where TAttribute : Attribute =>
- TryGetPropertyAttributeValue(propertyExpression, valueSelector, out var value) ? value : defaultValue;
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/HashtableExtensions.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/HashtableExtensions.cs
deleted file mode 100644
index 330592b85491..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/HashtableExtensions.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
-
-namespace NetCorePsd1Sync.Utility
-{
- internal static class HashtableExtensions
- {
- public static string GetValueAsString(this Hashtable hashtable, string key) => GetValueAsStringOrDefault(hashtable, key) ?? String.Empty;
-
- public static string GetValueAsStringOrDefault(this Hashtable hashtable, string key) => hashtable[key]?.ToString();
-
- public static Version GetValueAsVersion(this Hashtable hashtable, string key) => GetValueAsVersionOrDefault(hashtable, key) ?? new Version();
-
- public static Version GetValueAsVersionOrDefault(this Hashtable hashtable, string key)
- {
- var valueAsString = GetValueAsStringOrDefault(hashtable, key);
- if (valueAsString == null || !Version.TryParse(valueAsString, out var version)) return null;
- return version;
- }
-
- public static object[] GetValueAsArray(this Hashtable hashtable, string key) => GetValueAsArrayOrDefault(hashtable, key) ?? new object[]{};
-
- public static object[] GetValueAsArrayOrDefault(this Hashtable hashtable, string key) => hashtable[key] as object[];
-
- public static Hashtable GetValueAsHashtable(this Hashtable hashtable, string key) => hashtable[key] as Hashtable ?? new Hashtable();
-
- public static List GetValueAsStringList(this Hashtable hashtable, string key) => GetValueAsStringListOrDefault(hashtable, key) ?? new List();
-
- public static List GetValueAsStringListOrDefault(this Hashtable hashtable, string key)
- {
- if (hashtable[key] is string stringValue)
- {
- return new List { stringValue };
- }
- return hashtable.GetValueAsArrayOrDefault(key)?.OfType().ToList();
- }
-
- public static bool Any(this Hashtable hashtable) => hashtable.Count > 0;
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/ListExtensions.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/ListExtensions.cs
deleted file mode 100644
index d0ab1d5b5dd1..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/ListExtensions.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Linq;
-
-namespace NetCorePsd1Sync.Utility
-{
- internal static class ListExtensions
- {
- public static IEnumerable UpdateFirstAndLast(this List list, string firstLeader, string lastFollower) =>
- list.Select((value, i) => $"{(i == 0 ? firstLeader : String.Empty)}{value}{(i == list.Count - 1 ? lastFollower : String.Empty)}");
- }
-}
diff --git a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/StringExtensions.cs b/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/StringExtensions.cs
deleted file mode 100644
index a130d9f3f647..000000000000
--- a/tools/NetCorePsd1Sync/NetCorePsd1Sync/Utility/StringExtensions.cs
+++ /dev/null
@@ -1,276 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// Copyright Microsoft Corporation
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ----------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Linq;
-using System.Linq.Expressions;
-using NetCorePsd1Sync.Model;
-using static NetCorePsd1Sync.Model.PsDefinitionConstants;
-using static NetCorePsd1Sync.Utility.AttributeHelper;
-
-namespace NetCorePsd1Sync.Utility
-{
- internal static class StringExtensions
- {
- private static bool GetDescription(Expression> propertySelector, out string description)
- {
- var hasDescription = TryGetPropertyAttributeValue(propertySelector, attr => attr.Description, out description);
- description = hasDescription ? $"{CommentPrefix}{description}" : null;
- return hasDescription;
- }
-
- private static (TProp value, string firstLeader) GetValue(TClass targetClass, Expression> propertySelector)
- {
- var value = propertySelector.Compile()(targetClass);
- // https://stackoverflow.com/a/7580347/294804
- var firstLeader = value != null ? String.Empty : CommentPrefix;
- var hasDisplayName = TryGetPropertyAttributeValue(propertySelector, attr => attr.DisplayName, out var displayName);
- return (value, $"{firstLeader}{(hasDisplayName ? $"{displayName}{NameValueDelimiter}" : String.Empty)}");
- }
-
- // https://blogs.msdn.microsoft.com/csharpfaq/2010/03/11/how-can-i-get-objects-and-property-values-from-expression-trees/
- public static IEnumerable ToDefinitionEntry(this TClass targetClass, Expression> propertySelector)
- {
- if (GetDescription(propertySelector, out var description)) yield return description;
- (var value, var firstLeader) = GetValue(targetClass, propertySelector);
- yield return $"{firstLeader}{CreateValue(value, ElementPrefix, ElementPostfix)}";
- yield return String.Empty;
- }
-
- private static string CreateValue(TProp value, string valuePrefix, string valuePostfix) =>
- $"{valuePrefix}{(value == null ? String.Empty : value.ToString())}{valuePostfix}";
-
- public static IEnumerable ToDefinitionEntry(this TClass targetClass, Expression> propertySelector)
- {
- if (GetDescription(propertySelector, out var description)) yield return description;
- (var value, var firstLeader) = GetValue(targetClass, propertySelector);
- var boolValue = value != null && value.Value;
- yield return $"{firstLeader}{(boolValue ? "$true" : "$false")}";
- yield return String.Empty;
- }
-
- public static IEnumerable ToDefinitionEntry(this TClass targetClass, Expression> propertySelector)
- {
- (var header, var _) = GetValue(targetClass, propertySelector);
- if (header == null) yield break;
-
- foreach (var headerLine in header.ToDefinitionEntry())
- {
- yield return headerLine;
- }
- yield return String.Empty;
- }
-
- public static IEnumerable ToDefinitionEntry(this PsDefinition psDefinition, Expression> propertySelector)
- {
- if (GetDescription(propertySelector, out var description)) yield return description;
- (var privateData, var privateDataLeader) = GetValue(psDefinition, propertySelector);
- var privateDataDisplayName = GetPropertyAttributeValue(pd => pd.PrivateData, attr => attr.DisplayName, nameof(PrivateData));
- var privateDataFollower = privateData == null ? String.Empty : $" {CommentPrefix}End of {privateDataDisplayName} hashtable";
- foreach (var privateDataLine in privateData.ToDefinitionEntry().ToList().UpdateFirstAndLast(privateDataLeader, privateDataFollower))
- {
- yield return privateDataLine;
- }
-
- yield return String.Empty;
- }
-
- public static IEnumerable ToDefinitionEntry(this TClass targetClass, Expression>> propertySelector)
- {
- if (GetDescription(propertySelector, out var description)) yield return description;
- (var values, var firstLeader) = GetValue(targetClass, propertySelector);
-
- var isStringList = typeof(TList) == typeof(string);
- var listPrefix = isStringList ? String.Empty : ObjectListPrefix;
- var listPostfix = isStringList ? String.Empty : ObjectListPostfix;
- var valuePrefix = isStringList ? ElementPrefix : String.Empty;
- var valuePostfix = isStringList ? ElementPostfix : String.Empty;
-
- foreach (var propertyValue in CreateListValues(values, firstLeader, listPrefix, listPostfix, valuePrefix, valuePostfix, isStringList))
- {
- yield return propertyValue;
- }
-
- yield return String.Empty;
- }
-
- private const int MaxLineLength = 70;
- private static IEnumerable CreateListValues(IReadOnlyList values, string firstLeader,
- string listPrefix, string listPostfix, string valuePrefix, string valuePostfix, bool hasMaxLengthRestriction)
- {
- if (values == null || !values.Any())
- {
- yield return $"{firstLeader}{ObjectListPrefix}{ObjectListPostfix}";
- yield break;
- }
-
- var currentLine = String.Empty;
- var firstLine = true;
-
- string GetLeader() => firstLine ? $"{firstLeader}{listPrefix}" : Indent;
- bool IsFirst(int index) => index == 0;
- bool IsLast(int index) => index == values.Count - 1;
-
- for (var i = 0; i < values.Count; ++i)
- {
- var line = $"{valuePrefix}{values[i]}{valuePostfix}{(IsLast(i) ? listPostfix : ", ")}";
- var priorCurrentLine = currentLine;
- currentLine += line;
- if (IsFirst(i) || hasMaxLengthRestriction && currentLine.Length <= MaxLineLength) continue;
-
- yield return $"{GetLeader()}{priorCurrentLine}";
- currentLine = line;
- firstLine = false;
- }
- if (currentLine != String.Empty)
- {
- yield return $"{GetLeader()}{currentLine}";
- }
- }
-
- public static IEnumerable ToDefinitionEntry(this PsDefinitionHeader header)
- {
- if (header == null) yield break;
-
- yield return CommentToken;
- var moduleDisplayName = GetPropertyAttributeValue(pd => pd.ModuleName, attr => attr.DisplayName, String.Empty);
- yield return $"{CommentPrefix}{moduleDisplayName} {ElementPrefix}{header.ModuleName}{ElementPostfix}";
- yield return CommentToken;
- var authorDisplayName = GetPropertyAttributeValue(pd => pd.Author, attr => attr.DisplayName, String.Empty);
- yield return $"{CommentPrefix}{authorDisplayName}{HeaderDelimiter}{header.Author}";
- yield return CommentToken;
- var dateDisplayName = GetPropertyAttributeValue(pd => pd.Date, attr => attr.DisplayName, String.Empty);
- yield return $"{CommentPrefix}{dateDisplayName}{HeaderDelimiter}{header.Date:d}";
- yield return CommentToken;
- }
-
- public static IEnumerable ToDefinitionEntry(this PsData psData)
- {
- if (psData == null)
- {
- yield return $"{ObjectPrefix}{ObjectPostfix}";
- yield break;
- }
-
- yield return ObjectPrefix;
- yield return String.Empty;
- foreach (var tagLine in psData.ToDefinitionEntry(d => d.Tags))
- {
- yield return String.IsNullOrEmpty(tagLine) ? String.Empty : $"{Indent}{tagLine}";
- }
- foreach (var licenseUriLine in psData.ToDefinitionEntry(d => d.LicenseUri))
- {
- yield return String.IsNullOrEmpty(licenseUriLine) ? String.Empty : $"{Indent}{licenseUriLine}";
- }
- foreach (var projectUriLine in psData.ToDefinitionEntry(d => d.ProjectUri))
- {
- yield return String.IsNullOrEmpty(projectUriLine) ? String.Empty : $"{Indent}{projectUriLine}";
- }
- foreach (var iconUriLine in psData.ToDefinitionEntry(d => d.IconUri))
- {
- yield return String.IsNullOrEmpty(iconUriLine) ? String.Empty : $"{Indent}{iconUriLine}";
- }
- foreach (var releaseNoteLine in psData.ToDefinitionEntry(d => d.ReleaseNotes))
- {
- yield return String.IsNullOrEmpty(releaseNoteLine) ? String.Empty : $"{Indent}{releaseNoteLine}";
- }
- foreach (var prereleaseLine in psData.ToDefinitionEntry(d => d.Prerelease))
- {
- yield return String.IsNullOrEmpty(prereleaseLine) ? String.Empty : $"{Indent}{prereleaseLine}";
- }
- foreach (var requireLicenseLine in psData.ToDefinitionEntry(d => d.RequireLicenseAcceptance))
- {
- yield return String.IsNullOrEmpty(requireLicenseLine) ? String.Empty : $"{Indent}{requireLicenseLine}";
- }
- foreach (var dependenciesLine in psData.ToDefinitionEntry(d => d.ExternalModuleDependencies))
- {
- yield return String.IsNullOrEmpty(dependenciesLine) ? String.Empty : $"{Indent}{dependenciesLine}";
- }
- yield return ObjectPostfix;
- }
-
- public static IEnumerable ToDefinitionEntry(this PrivateData privateData)
- {
- if (privateData == null)
- {
- yield return $"{ObjectPrefix}{ObjectPostfix}";
- yield break;
- }
-
- yield return ObjectPrefix;
- yield return String.Empty;
-
- var psDataDisplayName = GetPropertyAttributeValue(pd => pd.PsData, attr => attr.DisplayName, nameof(PsData));
- var psDataLeader = $"{psDataDisplayName}{NameValueDelimiter}";
- var psDataFollower = privateData.PsData == null ? String.Empty : $" {CommentPrefix}End of {psDataDisplayName} hashtable";
- foreach (var psDataLine in privateData.PsData.ToDefinitionEntry().ToList().UpdateFirstAndLast(psDataLeader, psDataFollower))
- {
- yield return String.IsNullOrEmpty(psDataLine) ? String.Empty : $"{Indent}{psDataLine}";
- }
-
- yield return String.Empty;
- yield return ObjectPostfix;
- }
-
- public static IEnumerable ToDefinitionEntry(this PsDefinition definition)
- {
- foreach (var line in definition.ToDefinitionEntry(d => d.ManifestHeader)) yield return line;
-
- yield return ObjectPrefix;
- yield return String.Empty;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.RootModule)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.ModuleVersion)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.CompatiblePsEditions)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.Guid)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.Author)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.CompanyName)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.Copyright)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.Description)) yield return line;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.PowerShellVersion)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.PowerShellHostName)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.PowerShellHostVersion)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.DotNetFrameworkVersion)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.ClrVersion)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.ProcessorArchitecture)) yield return line;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.RequiredModules)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.RequiredAssemblies)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.ScriptsToProcess)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.TypesToProcess)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.FormatsToProcess)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.NestedModules)) yield return line;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.FunctionsToExport)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.CmdletsToExport)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.VariablesToExport)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.AliasesToExport)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.DscResourcesToExport)) yield return line;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.ModuleList)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.FileList)) yield return line;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.PrivateData)) yield return line;
-
- foreach (var line in definition.ToDefinitionEntry(d => d.HelpInfoUri)) yield return line;
- foreach (var line in definition.ToDefinitionEntry(d => d.DefaultCommandPrefix)) yield return line;
-
- yield return ObjectPostfix;
- yield return String.Empty;
- }
- }
-}
diff --git a/tools/NetCorePsd1Sync/NuGet.Config b/tools/NetCorePsd1Sync/NuGet.Config
deleted file mode 100644
index 1af0ff23d470..000000000000
--- a/tools/NetCorePsd1Sync/NuGet.Config
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/tools/StaticAnalysis/Exceptions/Az.MobileNetwork/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.MobileNetwork/SignatureIssues.csv
deleted file mode 100644
index a2880e04cc82..000000000000
--- a/tools/StaticAnalysis/Exceptions/Az.MobileNetwork/SignatureIssues.csv
+++ /dev/null
@@ -1,10 +0,0 @@
-"Module","ClassName","Target","Severity","ProblemId","Description","Remediation"
-"Az.MobileNetwork","New-AzMobileNetworkDataNetworkConfigurationObject","New-AzMobileNetworkDataNetworkConfigurationObject","1","8100","New-AzMobileNetworkDataNetworkConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkPccRuleConfigurationObject","New-AzMobileNetworkPccRuleConfigurationObject","1","8100","New-AzMobileNetworkPccRuleConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkServiceDataFlowTemplateObject","New-AzMobileNetworkServiceDataFlowTemplateObject","1","8100","New-AzMobileNetworkServiceDataFlowTemplateObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkServiceResourceIdObject","New-AzMobileNetworkServiceResourceIdObject","1","8100","New-AzMobileNetworkServiceResourceIdObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkSimNameAndEncryptedPropertiesObject","New-AzMobileNetworkSimNameAndEncryptedPropertiesObject","1","8100","New-AzMobileNetworkSimNameAndEncryptedPropertiesObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkSimNameAndPropertiesObject","New-AzMobileNetworkSimNameAndPropertiesObject","1","8100","New-AzMobileNetworkSimNameAndPropertiesObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkSimStaticIPPropertiesObject","New-AzMobileNetworkSimStaticIPPropertiesObject","1","8100","New-AzMobileNetworkSimStaticIPPropertiesObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkSiteResourceIdObject","New-AzMobileNetworkSiteResourceIdObject","1","8100","New-AzMobileNetworkSiteResourceIdObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
-"Az.MobileNetwork","New-AzMobileNetworkSliceConfigurationObject","New-AzMobileNetworkSliceConfigurationObject","1","8100","New-AzMobileNetworkSliceConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
\ No newline at end of file
diff --git a/tools/StaticAnalysis/StaticAnalysis.Netcore.csproj b/tools/StaticAnalysis/StaticAnalysis.Netcore.csproj
index af867adfdc6c..10f95656ce6c 100644
--- a/tools/StaticAnalysis/StaticAnalysis.Netcore.csproj
+++ b/tools/StaticAnalysis/StaticAnalysis.Netcore.csproj
@@ -22,7 +22,6 @@
-
diff --git a/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs b/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs
index 08da33cae0d8..a96fe5597960 100644
--- a/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs
+++ b/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs
@@ -35,6 +35,14 @@
namespace StaticAnalysis.UXMetadataAnalyzer
{
+ public class IssueLoggerContext
+ {
+ public string ModuleName { get; set; }
+ public string ResourceType { get; set; }
+ public string SubResourceType { get; set; }
+ public string CommandName { get; set; }
+ }
+
public class UXMetadataAnalyzer : IStaticAnalyzer
{
public AnalysisLogger Logger { get; set; }
@@ -89,7 +97,7 @@ public void Analyze(
!ModuleFilter.IsAzureStackModule(s) && Directory.Exists(Path.GetFullPath(s))))
{
SharedAssemblyLoader.Load(baseDirectory);
- var probingDirectories = new List {baseDirectory};
+ var probingDirectories = new List { baseDirectory };
// Add current directory for probing
probingDirectories.AddRange(Directory.EnumerateDirectories(Path.GetFullPath(baseDirectory)));
@@ -124,54 +132,53 @@ public void Analyze(
}
}
- private void ValidateSchema(string moduleName, string resourceType, string subResourceType, string UXMetadataContent, ReportLogger issueLogger)
+ private void ValidateSchema(IssueLoggerContext context, string UXMetadataContent, ReportLogger issueLogger)
{
var result = schemaValidator.Validate(UXMetadataContent, schema);
if (result != null && result.Count != 0)
{
foreach (ValidationError error in result)
{
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, null, 1, error.ToString().Replace("\n", "\\n"));
+ issueLogger.LogUXMetadataIssue(context, 1, error.ToString().Replace("\n", "\\n"));
}
}
}
- private void ValidateMetadata(string moduleName, string resourceType, string subResourceType, string UXMetadataContent, ModuleMetadata moduleMetadata, ReportLogger issueLogger)
+ private void ValidateMetadata(IssueLoggerContext context, string UXMetadataContent, ModuleMetadata moduleMetadata, ReportLogger issueLogger)
{
UXMetadata UXMetadata = JsonConvert.DeserializeObject(UXMetadataContent);
-
+
foreach (UXMetadataCommand command in UXMetadata.Commands)
{
- string expectLearnUrl = string.Format("https://learn.microsoft.com/powershell/module/{0}/{1}", moduleName, command.Name).ToLower();
-
+ context.CommandName = command.Name;
+ string expectLearnUrl = string.Format("https://learn.microsoft.com/powershell/module/{0}/{1}", context.ModuleName, command.Name).ToLower();
+
if (!expectLearnUrl.Equals(command.Help.LearnMore.Url, StringComparison.OrdinalIgnoreCase))
{
string description = string.Format("Doc url is expect: {0} but get: {1}", expectLearnUrl, command.Help.LearnMore.Url);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, command.Name, 1, description);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
}
- if (command.Path.IndexOf(resourceType, StringComparison.CurrentCultureIgnoreCase) == -1)
+ if (command.Path.IndexOf(context.ResourceType, StringComparison.CurrentCultureIgnoreCase) == -1)
{
- string description = string.Format("The path {0} doesn't contains the right resource tpye: {1}", command.Path, resourceType);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, command.Name, 2, description);
+ string description = string.Format("The path {0} doesn't contains the right resource tpye: {1}", command.Path, context.ResourceType);
+ issueLogger.LogUXMetadataIssue(context, 2, description);
}
CmdletMetadata cmdletMetadata = moduleMetadata.Cmdlets.Find(x => x.Name == command.Name);
if (cmdletMetadata == null)
{
- string description = string.Format("Cmdlet {0} is not contained in {1}.", command.Name, moduleName);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, command.Name, 1, description);
+ string description = string.Format("Cmdlet {0} is not contained in {1}.", command.Name, context.ModuleName);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
+ continue;
}
- else
+ foreach (UXMetadataCommandExample example in command.Examples)
{
- foreach (UXMetadataCommandExample example in command.Examples)
- {
- ValidateExample(moduleName, resourceType, subResourceType, command.Name, cmdletMetadata, example, issueLogger);
- }
+ ValidateExample(context, command, cmdletMetadata, example, issueLogger);
}
}
}
- private void ValidateExample(string moduleName, string resourceType, string subResourceType, string commandName, CmdletMetadata cmdletMetadata, UXMetadataCommandExample example, ReportLogger issueLogger)
+ private void ValidateExample(IssueLoggerContext context, UXMetadataCommand command, CmdletMetadata cmdletMetadata, UXMetadataCommandExample example, ReportLogger issueLogger)
{
List parameterListConvertedFromAlias = example.Parameters.Select(x =>
{
@@ -187,13 +194,13 @@ private void ValidateExample(string moduleName, string resourceType, string subR
if (alias.Equals(parameterNameInExample, StringComparison.CurrentCultureIgnoreCase))
{
string issueDescription = string.Format("Please use parameter {0} instead of alias {1}", parameterMetadata.Name, alias);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, commandName, 2, issueDescription);
+ issueLogger.LogUXMetadataIssue(context, 2, issueDescription);
return parameterMetadata.Name;
}
}
}
string description = string.Format("Cannot find the defination of parameter {0} in example", parameterNameInExample);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, commandName, 1, description);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
return null;
}).ToList();
@@ -203,7 +210,7 @@ private void ValidateExample(string moduleName, string resourceType, string subR
if (parameterListConvertedFromAlias.Count(x => parameter.Equals(x)) != 1)
{
string description = string.Format("Multiply reference of parameter {0} in example", parameter);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, commandName, 1, description);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
}
}
if (parameterListConvertedFromAlias.Contains(null))
@@ -222,8 +229,51 @@ private void ValidateExample(string moduleName, string resourceType, string subR
if (!findMatchedParameterSet)
{
- string description = string.Format("Cannot find a matched parameter set for example of {0}", commandName);
- issueLogger.LogUXMetadataIssue(moduleName, resourceType, subResourceType, commandName, 1, description);
+ string description = string.Format("Cannot find a matched parameter set for example of {0}", context.CommandName);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
+ }
+
+ #region valiate the parameters in path
+ var httpPathParameterRegex = new Regex(@"\{\w+\}");
+ HashSet parametersFromHttpPath = new HashSet(httpPathParameterRegex.Matches(command.Path).Select(x => x.Value.TrimStart('{').TrimEnd('}')), StringComparer.OrdinalIgnoreCase);
+ ValidateParametersDefinedInPathContainsInExample(context, parametersFromHttpPath, example, issueLogger);
+ ValidateParametersInExampleDefinedInPath(context, parametersFromHttpPath, example, issueLogger);
+ #endregion
+ }
+
+ private void ValidateParametersDefinedInPathContainsInExample(IssueLoggerContext context, HashSet parametersFromHttpPath, UXMetadataCommandExample example, ReportLogger issueLogger)
+ {
+ foreach (string parameterFromHttpPath in parametersFromHttpPath)
+ {
+ if (parameterFromHttpPath.Equals("subscriptionId", StringComparison.CurrentCultureIgnoreCase))
+ {
+ continue;
+ }
+ bool isParameterContainsInExample = example.Parameters.Any(x => x.Value.Equals(string.Format("[path.{0}]", parameterFromHttpPath), StringComparison.CurrentCultureIgnoreCase));
+ if (!isParameterContainsInExample)
+ {
+ string description = string.Format("{0} is defined in path but cannot find in example", parameterFromHttpPath);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
+ }
+ }
+ }
+
+ private void ValidateParametersInExampleDefinedInPath(IssueLoggerContext context, HashSet parametersFromHttpPath, UXMetadataCommandExample example, ReportLogger issueLogger)
+ {
+ var exampleParameterPathRegex = new Regex(@"path\.([\w]+)");
+ foreach (string parameterInExample in example.Parameters.Select(x => x.Value))
+ {
+ var match = exampleParameterPathRegex.Match(parameterInExample);
+ if (!match.Success)
+ {
+ continue;
+ }
+ var parameterName = match.Groups[1].Value;
+ if (!parametersFromHttpPath.Contains(parameterName))
+ {
+ string description = string.Format("{0} is defined in example but cannot find in http path", parameterName);
+ issueLogger.LogUXMetadataIssue(context, 1, description);
+ }
}
}
@@ -267,8 +317,14 @@ private void ValidateUXMetadata(string moduleName, string UXMetadataPath, Module
string UXMetadataContent = File.ReadAllText(UXMetadataPath);
string resourceType = Path.GetFileName(Path.GetDirectoryName(UXMetadataPath));
string subResourceType = Path.GetFileName(UXMetadataPath).Replace(".json", "");
- ValidateSchema(moduleName, resourceType, subResourceType, UXMetadataContent, issueLogger);
- ValidateMetadata(moduleName, resourceType, subResourceType, UXMetadataContent, moduleMetadata, issueLogger);
+ IssueLoggerContext context = new IssueLoggerContext
+ {
+ ModuleName = moduleName,
+ ResourceType = resourceType,
+ SubResourceType = subResourceType
+ };
+ ValidateSchema(context, UXMetadataContent, issueLogger);
+ ValidateMetadata(context, UXMetadataContent, moduleMetadata, issueLogger);
}
@@ -290,15 +346,15 @@ public AnalysisReport GetAnalysisReport()
public static class LogExtensions
{
public static void LogUXMetadataIssue(
- this ReportLogger issueLogger, string module, string resourceType, string subResourceType, string command,
+ this ReportLogger issueLogger, IssueLoggerContext context,
int severity, string description)
{
issueLogger.LogRecord(new UXMetadataIssue
{
- Module = module,
- ResourceType = resourceType,
- SubResourceType = subResourceType,
- Command = command,
+ Module = context.ModuleName,
+ ResourceType = context.ResourceType,
+ SubResourceType = context.SubResourceType,
+ Command = context.CommandName,
Description = description,
Severity = severity,
});
diff --git a/tools/TestFx/Assert.ps1 b/tools/TestFx/Assert.ps1
index 1a2c8d3597ba..f604184eea1f 100644
--- a/tools/TestFx/Assert.ps1
+++ b/tools/TestFx/Assert.ps1
@@ -19,36 +19,29 @@
# param [ScriptBlock] $script : The code to test
# param [string] $message : The text of the exception that should be thrown
#######################
-function Assert-Throws
-{
- param([ScriptBlock] $script, [string] $message)
- try
- {
- &$script
- }
- catch
- {
- if ($message -ne "")
- {
+function Assert-Throws {
+ param([scriptblock] $script, [string] $message)
+ try {
+ & $script
+ }
+ catch {
+ if ($message -ne "") {
$actualMessage = $_.Exception.Message
Write-Output ("Caught exception: '$actualMessage'")
- if ($actualMessage -eq $message)
- {
- return $true;
+ if ($actualMessage -eq $message) {
+ return $true
}
- else
- {
- throw "Expected exception not received: '$message' the actual message is '$actualMessage'";
+ else {
+ throw "Expected exception '$message' was not received, the actual message is '$actualMessage'"
}
}
- else
- {
- return $true;
+ else {
+ return $true
}
}
- throw "No exception occurred";
+ throw "No exception occurred"
}
######################
@@ -58,35 +51,29 @@ function Assert-Throws
# param [ScriptBlock] $script : The code to test
# param [ScriptBlock] $compare : Predicate used to determine if the message meets criteria
#######################
-function Assert-ThrowsContains
-{
- param([ScriptBlock] $script, [string] $compare)
- try
- {
- &$script
- }
- catch
- {
- if ($compare -ne "")
- {
+function Assert-ThrowsContains {
+ param([scriptblock] $script, [string] $compare)
+ try {
+ & $script
+ }
+ catch {
+ if ($compare -ne "") {
$actualMessage = $_.Exception.Message
Write-Output ("Caught exception: '$actualMessage'")
- if ($actualMessage.Contains($compare))
- {
- return $true;
+
+ if ($actualMessage.Contains($compare)) {
+ return $true
}
- else
- {
- throw "Expected exception does not contain expected text '$compare', the actual message is '$actualMessage'";
+ else {
+ throw "Expected exception does not contain the expected text '$compare', the actual message is '$actualMessage'"
}
}
- else
- {
- return $true;
+ else {
+ return $true
}
}
- throw "No exception occurred";
+ throw "No exception occurred"
}
######################
@@ -96,48 +83,41 @@ function Assert-ThrowsContains
# param [ScriptBlock] $script : The code to test
# param [ScriptBlock] $compare: Predicate used to determine if the message meets the criteria (-like)
#######################
-function Assert-ThrowsLike
-{
- param([ScriptBlock] $script, [string] $compare)
- try
- {
- &$script
- }
- catch
- {
- if ($compare -ne "")
- {
+function Assert-ThrowsLike {
+ param([scriptblock] $script, [string] $compare)
+ try {
+ & $script
+ }
+ catch {
+ if ($compare -ne "") {
$actualMessage = $_.Exception.Message
Write-Output ("Caught exception: '$actualMessage'")
- if ($actualMessage -like $compare)
- {
- return $true;
+
+ if ($actualMessage -like $compare) {
+ return $true
}
- else
- {
- throw "Expected exception is not like the expected text '$compare', the actual message is '$actualMessage'";
+ else {
+ throw "Expected exception is not like the expected text '$compare', the actual message is '$actualMessage'"
}
}
- else
- {
- return $true;
+ else {
+ return $true
}
}
- throw "No exception occurred";
+ throw "No exception occurred"
}
<#
.SYNOPSIS
Given a list of variable names, assert that all of them are defined
#>
-function Assert-Env
-{
- param([string[]] $vars)
- $tmp = Get-Item env:
- $env = @{}
- $tmp | % { $env.Add($_.Key, $_.Value)}
- $vars | % { Assert-True {$env.ContainsKey($_)} "Environment Variable $_ Is Required. Please set the value before running the test"}
+function Assert-Env {
+ param([string[]] $vars)
+ $tmp = Get-Item env:
+ $env = @{}
+ $tmp | ForEach-Object { $env.Add($_.Key, $_.Value) }
+ $vars | ForEach-Object { Assert-True { $env.ContainsKey($_) } "Environment Variable $_ Is Required. Please set the value before running the test" }
}
###################
@@ -147,18 +127,15 @@ function Assert-Env
# param [ScriptBlock] $script : The script to execute
# param [string] $message : The message to return if the given script does not return true
####################
-function Assert-True
-{
- param([ScriptBlock] $script, [string] $message)
+function Assert-True {
+ param([scriptblock] $script, [string] $message)
- if (!$message)
- {
+ if (!$message) {
$message = "Assertion failed: " + $script
}
$result = &$script
- if (-not $result)
- {
+ if (-not $result) {
Write-Debug "Failure: $message"
throw $message
}
@@ -173,18 +150,15 @@ function Assert-True
# param [ScriptBlock] $script : The script to execute
# param [string] $message : The message to return if the given script does not return false
####################
-function Assert-False
-{
- param([ScriptBlock] $script, [string] $message)
+function Assert-False {
+ param([scriptblock] $script, [string] $message)
- if (!$message)
- {
+ if (!$message) {
$message = "Assertion failed: " + $script
}
- $result = &$script
- if ($result)
- {
+ $result = & $script
+ if ($result) {
throw $message
}
@@ -198,17 +172,14 @@ function Assert-False
# param [object] $actual : The actual object
# param [string] $message : The message to return if the given script does not return true
####################
-function Assert-NotNull
-{
+function Assert-NotNull {
param([object] $actual, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because the object is null: " + $actual
+ if (!$message) {
+ $message = "Assertion failed because the actual object is null."
}
- if ($actual -eq $null)
- {
+ if ($null -eq $actual) {
throw $message
}
@@ -222,17 +193,14 @@ function Assert-NotNull
# param [string] $actual : The actual string
# param [string] $message : The message to return if the given script does not return true
####################
-function Assert-NotNullOrEmpty
-{
+function Assert-NotNullOrEmpty {
param([string] $actual, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because the string is null or empty: " + $actual
+ if (!$message) {
+ $message = "Assertion failed because the actual string is null or empty."
}
- if ([string]::IsNullOrEmpty($actual))
- {
+ if ([string]::IsNullOrEmpty($actual)) {
throw $message
}
@@ -246,10 +214,9 @@ function Assert-NotNullOrEmpty
# param [string] $path : The path to the file to test
# param [string] $message: The text of the exception to throw if the file doesn't exist
######################
-function Assert-Exists
-{
- param([string] $path, [string] $message)
- return Assert-True {Test-Path $path} $message
+function Assert-Exists {
+ param([string] $path, [string] $message)
+ return Assert-True { Test-Path $path } $message
}
###################
@@ -260,18 +227,15 @@ function Assert-Exists
# param [object] $actual : The actual object
# param [string] $message : The message to return if the given objects are not equal
####################
-function Assert-AreEqual
-{
- param([object] $expected, [object] $actual, [string] $message)
+function Assert-AreEqual {
+ param([object] $expected, [object] $actual, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because expected '$expected' does not match actual '$actual'"
+ if (!$message) {
+ $message = "Assertion failed because the expected object '$expected' does not match the actual '$actual'."
}
- if ($expected -ne $actual)
- {
- throw $message
+ if ($expected -ne $actual) {
+ throw $message
}
return $true
@@ -285,18 +249,17 @@ function Assert-AreEqual
# param [long] $interval : The acceptable offset either side of the expected
# param [string] $message : The message to return if the given objects are not equal
####################
-function Assert-NumAreInRange
-{
- param([long] $expected, [long] $actual, [long] $interval, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because expected '$expected' does not fall in accepted range of 'interval' of actual '$actual'"
- }
- if(!($actual -ge ($expected-$interval) -and $actual -le ($expected+$interval)))
- {
- throw $message
- }
- return $true
+function Assert-NumAreInRange {
+ param([long] $expected, [long] $actual, [long] $interval, [string] $message)
+ if (!$message) {
+ $message = "Assertion failed because the expected number '$expected' does not fall in accepted range of 'interval' of the actual '$actual'."
+ }
+
+ if (!($actual -ge ($expected - $interval) -and $actual -le ($expected + $interval))) {
+ throw $message
+ }
+
+ return $true
}
###################
#
@@ -306,20 +269,17 @@ function Assert-NumAreInRange
# param [array] $actual : The actual array
# param [string] $message : The message to return if the given arrays are not equal.
####################
-function Assert-AreEqualArray
-{
- param([object] $expected, [object] $actual, [string] $message)
+function Assert-AreEqualArray {
+ param([object] $expected, [object] $actual, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because expected '$expected' does not match actual '$actual'"
+ if (!$message) {
+ $message = "Assertion failed because the expected object '$expected' does not match the actual '$actual'."
}
$diff = Compare-Object $expected $actual -PassThru
- if ($diff -ne $null)
- {
- throw $message
+ if ($null -ne $diff) {
+ throw $message
}
return $true
@@ -333,21 +293,18 @@ function Assert-AreEqualArray
# param [object] $actual : The actual object
# param [string] $message : The message to return if the given objects are not equal.
####################
-function Assert-AreEqualObjectProperties
-{
+function Assert-AreEqualObjectProperties {
param([object] $expected, [object] $actual, [string] $message)
- $properties = $expected | Get-Member -MemberType "Property" | Select -ExpandProperty Name
+ $properties = $expected | Get-Member -MemberType "Property" | Select-Object -ExpandProperty Name
$diff = Compare-Object $expected $actual -Property $properties
- if ($diff -ne $null)
- {
- if (!$message)
- {
- $message = "Assert failed because the objects don't match. Expected: " + $diff[0] + " Actual: " + $diff[1]
- }
+ if ($null -ne $diff) {
+ if (!$message) {
+ $message = "Assert failed because the expected objects '$($diff[0])' does not match the actual $($diff[1])."
+ }
- throw $message
+ throw $message
}
return $true
@@ -360,18 +317,15 @@ function Assert-AreEqualObjectProperties
# param [object] $actual : The actual object
# param [string] $message : The message to return if the given object is not null
####################
-function Assert-Null
-{
- param([object] $actual, [string] $message)
+function Assert-Null {
+ param([object] $actual, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because the object is not null: " + $actual
+ if (!$message) {
+ $message = "Assertion failed because the actual object '$actual' is not null."
}
- if ($actual -ne $null)
- {
- throw $message
+ if ($actual -ne $null) {
+ throw $message
}
return $true
@@ -385,18 +339,15 @@ function Assert-Null
# param [object] $actual : The actual object
# param [string] $message : The message to return if the given objects are equal
####################
-function Assert-AreNotEqual
-{
- param([object] $expected, [object] $actual, [string] $message)
+function Assert-AreNotEqual {
+ param([object] $expected, [object] $actual, [string] $message)
- if (!$message)
- {
- $message = "Assertion failed because expected '$expected' does match actual '$actual'"
+ if (!$message) {
+ $message = "Assertion failed because the expected object '$expected' does match the actual '$actual'."
}
- if ($expected -eq $actual)
- {
- throw $message
+ if ($expected -eq $actual) {
+ throw $message
}
return $true
@@ -410,20 +361,17 @@ function Assert-AreNotEqual
# param [string] $actual : The actual string
# param [string] $message : The message to return if the actual string does not begin with the prefix
####################
-function Assert-StartsWith
-{
- param([string] $expectedPrefix, [string] $actual, [string] $message)
+function Assert-StartsWith {
+ param([string] $expectedPrefix, [string] $actual, [string] $message)
Assert-NotNullOrEmpty $actual
- if (!$message)
- {
- $message = "Assertion failed because actual '$actual' does not start with '$expectedPrefix'"
+ if (!$message) {
+ $message = "Assertion failed because the actual string '$actual' does not start with '$expectedPrefix'."
}
- if (-not $actual.StartsWith($expectedPrefix))
- {
- throw $message
+ if (!$actual.StartsWith($expectedPrefix)) {
+ throw $message
}
return $true
@@ -437,20 +385,17 @@ function Assert-StartsWith
# param [string] $actual : The actual string
# param [string] $message : The message to return if the actual string does not match the regular expression
####################
-function Assert-Match
-{
- param([string] $regex, [string] $actual, [string] $message)
+function Assert-Match {
+ param([string] $regex, [string] $actual, [string] $message)
Assert-NotNullOrEmpty $actual
- if (!$message)
- {
- $message = "Assertion failed because actual '$actual' does not match '$regex'"
+ if (!$message) {
+ $message = "Assertion failed because the actual string '$actual' does not match the regular expression '$regex'."
}
- if (-not $actual -Match $regex >$null)
- {
- throw $message
+ if (!($actual -match $regex)) {
+ throw $message
}
return $true
@@ -464,20 +409,17 @@ function Assert-Match
# param [string] $actual : The actual string
# param [string] $message : The message to return if the actual string matches the regular expression
####################
-function Assert-NotMatch
-{
- param([string] $regex, [string] $actual, [string] $message)
+function Assert-NotMatch {
+ param([string] $regex, [string] $actual, [string] $message)
Assert-NotNullOrEmpty $actual
- if (!$message)
- {
- $message = "Assertion failed because actual '$actual' does match '$regex'"
+ if (!$message) {
+ $message = "Assertion failed because the actual string '$actual' does match the regular expression '$regex'."
}
- if ($actual -Match $regex >$null)
- {
- throw $message
+ if ($actual -Match $regex) {
+ throw $message
}
return $true
@@ -491,24 +433,21 @@ function Assert-NotMatch
# param [string] $expected : The expected value.
# param [string] $message : The message to return if the actual string does not contain the expected value.
####################
-function Assert-ContainsItem
-{
- param([string] $actual, [string] $expected, [string] $message)
+function Assert-ContainsItem {
+ param([string] $actual, [string] $expected, [string] $message)
Assert-NotNullOrEmpty $actual
Assert-NotNullOrEmpty $expected
- if (!$message)
- {
- $message = "Assertion failed because actual '$actual' does not contain an item matching '$expected'"
+ if (!$message) {
+ $message = "Assertion failed because the actual string '$actual' does not contain an item matching '$expected'"
}
$split = $actual -Split ' '
- if (!$split.contains($expected))
- {
- throw $message
+ if (!$split.contains($expected)) {
+ throw $message
}
return $true
-}
\ No newline at end of file
+}
diff --git a/tools/TestFx/Coverage/TestCoverageUtility.psd1 b/tools/TestFx/Coverage/TestCoverageUtility.psd1
new file mode 100644
index 000000000000..6a90b8b70ba7
--- /dev/null
+++ b/tools/TestFx/Coverage/TestCoverageUtility.psd1
@@ -0,0 +1,136 @@
+# ----------------------------------------------------------------------------------
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+@{
+
+ # Script module or binary module file associated with this manifest.
+ RootModule = 'TestCoverageUtility.psm1'
+
+ # Version number of this module.
+ ModuleVersion = '0.1.0'
+
+ # Supported PSEditions
+ CompatiblePSEditions = 'Core', 'Desktop'
+
+ # ID used to uniquely identify this module
+ GUID = 'c87d6972-26e0-4801-ac68-94d2ad3f4870'
+
+ # Author of this module
+ Author = 'Microsoft Corporation'
+
+ # Company or vendor of this module
+ CompanyName = 'Microsoft Corporation'
+
+ # Copyright statement for this module
+ Copyright = 'Microsoft Corporation. All rights reserved.'
+
+ # Description of the functionality provided by this module
+ Description = 'Analyze and calculate test coverage'
+
+ # Minimum version of the PowerShell engine required by this module
+ PowerShellVersion = '5.1'
+
+ # Name of the PowerShell host required by this module
+ # PowerShellHostName = ''
+
+ # Minimum version of the PowerShell host required by this module
+ # PowerShellHostVersion = ''
+
+ # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ DotNetFrameworkVersion = '4.7.2'
+
+ # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ # ClrVersion = ''
+
+ # Processor architecture (None, X86, Amd64) required by this module
+ # ProcessorArchitecture = ''
+
+ # Modules that must be imported into the global environment prior to importing this module
+ # RequiredModules = @()
+
+ # Assemblies that must be loaded prior to importing this module
+ # RequiredAssemblies = @()
+
+ # Script files (.ps1) that are run in the caller's environment prior to importing this module.
+ # ScriptsToProcess = @()
+
+ # Type files (.ps1xml) to be loaded when importing this module
+ # TypesToProcess = @()
+
+ # Format files (.ps1xml) to be loaded when importing this module
+ # FormatsToProcess = @()
+
+ # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
+ # NestedModules = @()
+
+ # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
+ FunctionsToExport = 'Get-TestCoverageModuleDetails'
+
+ # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
+ CmdletsToExport = @()
+
+ # Variables to export from this module
+ VariablesToExport = @()
+
+ # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
+ AliasesToExport = @()
+
+ # DSC resources to export from this module
+ # DscResourcesToExport = @()
+
+ # List of all modules packaged with this module
+ # ModuleList = @()
+
+ # List of all files packaged with this module
+ # FileList = @()
+
+ # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
+ PrivateData = @{
+
+ PSData = @{
+
+ # Tags applied to this module. These help with module discovery in online galleries.
+ # Tags = @()
+
+ # A URL to the license for this module.
+ # LicenseUri = ''
+
+ # A URL to the main website for this project.
+ # ProjectUri = ''
+
+ # A URL to an icon representing this module.
+ # IconUri = ''
+
+ # ReleaseNotes of this module
+ # ReleaseNotes = ''
+
+ # Prerelease string of this module
+ # Prerelease = ''
+
+ # Flag to indicate whether the module requires explicit user acceptance for install/update/save
+ # RequireLicenseAcceptance = $false
+
+ # External dependent modules of this module
+ # ExternalModuleDependencies = @()
+
+ } # End of PSData hashtable
+
+ } # End of PrivateData hashtable
+
+ # HelpInfo URI of this module
+ # HelpInfoURI = ''
+
+ # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
+ # DefaultCommandPrefix = ''
+
+}
diff --git a/tools/TestFx/Coverage/TestCoverageUtility.psm1 b/tools/TestFx/Coverage/TestCoverageUtility.psm1
new file mode 100644
index 000000000000..6d8e03d3171d
--- /dev/null
+++ b/tools/TestFx/Coverage/TestCoverageUtility.psm1
@@ -0,0 +1,46 @@
+# ----------------------------------------------------------------------------------
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+$script:AzPSCommonParameters = @("-Break", "-Confirm", "-Debug", "-DefaultProfile", "-ErrorAction", "-ErrorVariable", "-HttpPipelineAppend", "-HttpPipelinePrepend", "-InformationAction", "-InformationVariable",
+ "-OutBuffer", "-OutVariable", "-PassThru", "-PipelineVariable", "-Proxy", "-ProxyCredential", "-ProxyUseDefaultCredentials", "-Verbose", "-WarningAction", "-WarningVariable", "-WhatIf")
+function Get-TestCoverageModuleDetails {
+ [CmdletBinding()]
+ [OutputType([hashtable])]
+ param (
+ [Parameter(Mandatory)]
+ [ValidateNotNull()]
+ $Module
+ )
+
+ [hashtable] $ModuleDetails = @{}
+
+ $moduleCommands = $Module.ExportedCmdlets.Keys + $Module.ExportedFunctions.Keys
+ $totalCommands = $moduleCommands.Count
+
+ $totalParameterSets = 0
+ $totalParameters = 0
+ $moduleCommands | ForEach-Object {
+ $command = Get-Command -Name $_
+ $totalParameterSets += $command.ParameterSets.Count
+
+ $commandParams = $command.Parameters
+ $commandParams.Keys | ForEach-Object {
+ if ($_ -notin $script:AzPSCommonParameters) {
+ $totalParameters += $commandParams[$_].ParameterSets.Count
+ }
+ }
+ }
+
+ $ModuleDetails = @{ TotalCommands = $totalCommands; TotalParameterSets = $totalParameterSets; TotalParameters = $totalParameters }
+ $ModuleDetails
+}
diff --git a/tools/TestFx/Live/ConnectLiveTestServicePrincipal.ps1 b/tools/TestFx/Live/ConnectLiveTestServicePrincipal.ps1
new file mode 100644
index 000000000000..8a0794ec3e7b
--- /dev/null
+++ b/tools/TestFx/Live/ConnectLiveTestServicePrincipal.ps1
@@ -0,0 +1,21 @@
+param (
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $SubscriptionId,
+
+ [Parameter(Mandatory, Position = 1)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $TenantId,
+
+ [Parameter(Mandatory, Position = 2)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $ServicePrincipalId,
+
+ [Parameter(Mandatory, Position = 3)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ServicePrincipalSecret
+)
+
+$servicePrincipalSecureSecret = ConvertTo-SecureString -String $ServicePrincipalSecret -AsPlainText -Force
+$servicePrincipalCredential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $ServicePrincipalId, $servicePrincipalSecureSecret
+Connect-AzAccount -SubscriptionId $SubscriptionId -TenantId $TenantId -Credential $servicePrincipalCredential -ServicePrincipal
diff --git a/tools/TestFx/Live/InitializeLiveTestEnvironment.ps1 b/tools/TestFx/Live/InitializeLiveTestEnvironment.ps1
new file mode 100644
index 000000000000..55067633a78a
--- /dev/null
+++ b/tools/TestFx/Live/InitializeLiveTestEnvironment.ps1
@@ -0,0 +1,63 @@
+param(
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [string] $DesiredVersion
+)
+
+$winPSVersion = "5.1"
+$isWinPSDesired = $DesiredVersion -eq $winPSVersion
+
+function InstallLiveTestDesiredPowerShell {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $DesiredVersion
+ )
+
+ Write-Host "Validating desired PowerShell version ..."
+
+ if ($isWinPSDesired) {
+ powershell -NoLogo -NoProfile -NonInteractive -Command "(Get-Variable -Name PSVersionTable).Value"
+ Write-Host "Desired Windows Powershell version $DesiredVersion has been installed."
+ }
+ else {
+ Write-Host "Installing PowerShell version $DesiredVersion ..."
+
+ dotnet --version
+ dotnet new tool-manifest --force
+ if ($DesiredVersion -eq "latest") {
+ dotnet tool install powershell
+ }
+ else {
+ dotnet tool install powershell --version $DesiredVersion
+ }
+ dotnet tool list
+
+ dotnet tool run pwsh -Version
+
+ Write-Host "Desired PowerShell version $DesiredVersion has been installed."
+ }
+}
+
+function RemoveLiveTestPreInstalledModule {
+ [CmdletBinding()]
+ param(
+ [Parameter(Mandatory, Position = 0)]
+ [Alias("ModuleName")]
+ [ValidateNotNullOrEmpty()]
+ [string] $Name
+ )
+
+ # Remove Az modules
+ Get-Module -Name $Name* -ListAvailable | ForEach-Object {
+ $moduleDirectory = $_.Path | Split-Path | Split-Path
+ if (Test-Path -LiteralPath $moduleDirectory) {
+ Remove-Item -LiteralPath $moduleDirectory -Recurse -Force
+ }
+ }
+}
+
+RemoveLiveTestPreInstalledModule -Name Az
+RemoveLiveTestPreInstalledModule -Name AzureRM
+InstallLiveTestDesiredPowerShell -DesiredVersion $DesiredVersion
diff --git a/tools/TestFx/Live/InstallLiveTestAzModules.ps1 b/tools/TestFx/Live/InstallLiveTestAzModules.ps1
new file mode 100644
index 000000000000..445007018c54
--- /dev/null
+++ b/tools/TestFx/Live/InstallLiveTestAzModules.ps1
@@ -0,0 +1,19 @@
+param (
+ [Parameter(Mandatory)]
+ [ValidateSet("PSGallery", "DailyBuild", IgnoreCase = $false)]
+ [string] $Source,
+
+ [Parameter()]
+ [string] $AzPackagesLocation
+)
+
+switch ($Source) {
+ "PSGallery" {
+ Set-PSRepository -Name $Source -InstallationPolicy Trusted
+ }
+ "DailyBuild" {
+ Register-PSRepository -Name $Source -SourceLocation $AzPackagesLocation -PackageManagementProvider NuGet -InstallationPolicy Trusted
+ }
+}
+
+Install-Module -Name Az -Repository $Source -Scope CurrentUser -AllowClobber -Force
diff --git a/tools/TestFx/Live/InvokeLiveTestCITask.ps1 b/tools/TestFx/Live/InvokeLiveTestCITask.ps1
new file mode 100644
index 000000000000..9d2be07b79e4
--- /dev/null
+++ b/tools/TestFx/Live/InvokeLiveTestCITask.ps1
@@ -0,0 +1,29 @@
+[CmdletBinding(DefaultParameterSetName = "ByScriptFile")]
+param (
+ [Parameter(Mandatory)]
+ [bool] $UseWindowsPowerShell,
+
+ [Parameter(Mandatory, ParameterSetName = "ByScriptFile")]
+ [ValidateNotNullOrEmpty()]
+ [string] $ScriptFile,
+
+ [Parameter(Mandatory, ParameterSetName = "ByScriptBlock")]
+ [ValidateNotNullOrEmpty()]
+ [string] $ScriptBlock
+)
+
+if ($UseWindowsPowerShell) {
+ $process = "powershell"
+}
+else {
+ $process = "dotnet tool run pwsh"
+}
+
+switch ($PSCmdlet.ParameterSetName) {
+ "ByScriptFile" {
+ Invoke-Expression "$process -NoLogo -NoProfile -NonInteractive -File '$ScriptFile'"
+ }
+ "ByScriptBlock" {
+ Invoke-Expression "$process -NoLogo -NoProfile -NonInteractive -Command $ScriptBlock"
+ }
+}
diff --git a/tools/TestFx/Live/InvokeLiveTestScenarios.ps1 b/tools/TestFx/Live/InvokeLiveTestScenarios.ps1
new file mode 100644
index 000000000000..9ffe59ff4b63
--- /dev/null
+++ b/tools/TestFx/Live/InvokeLiveTestScenarios.ps1
@@ -0,0 +1,78 @@
+param (
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [string] $BuildId,
+
+ [Parameter(Mandatory, Position = 1)]
+ [ValidateNotNullOrEmpty()]
+ [string] $OSVersion,
+
+ [Parameter(Mandatory, Position = 2)]
+ [ValidateNotNullOrEmpty()]
+ [string] $PSVersion,
+
+ [Parameter(Mandatory, Position = 3)]
+ [ValidateScript({ Test-Path -LiteralPath $_ -PathType Container })]
+ [string] $RepoLocation,
+
+ [Parameter(Mandatory, Position = 4)]
+ [ValidateScript({ Test-Path -LiteralPath $_ -PathType Container })]
+ [string] $DataLocation
+)
+
+function FillLiveTestCoverageAdditionalInfo {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory)]
+ [ValidateScript({ Test-Path -LiteralPath $_ -PathType Container })]
+ [string] $TestCoverageDataLocation,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $BuildId,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $OSVersion,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $PSVersion,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ModuleName
+ )
+
+ $testCoverageUtility = $PSScriptRoot | Split-Path | Join-Path -ChildPath "Coverage" | Join-Path -ChildPath "TestCoverageUtility.psd1"
+ Import-Module $testCoverageUtility
+ $module = Get-Module -Name "Az.$ModuleName" -ListAvailable
+ $moduleDetails = Get-TestCoverageModuleDetails -Module $module
+
+ $testCoverageRawCsv = Join-Path -Path $TestCoverageDataLocation -ChildPath "TestCoverageAnalysis" | Join-Path -ChildPath "Raw" | Join-Path -ChildPath "Az.$ModuleName.csv"
+ (Import-Csv -LiteralPath $testCoverageRawCsv) |
+ Select-Object @{ Name = "BuildId"; Expression = { "$BuildId" } }, `
+ @{ Name = "OSVersion"; Expression = { "$OSVersion" } }, `
+ @{ Name = "PSVersion"; Expression = { "$PSVersion" } }, `
+ @{ Name = "Module"; Expression = { "$ModuleName" } }, `
+ "CommandName", @{ Name = "TotalCommands"; Expression = { "$($moduleDetails['TotalCommands'])" } }, `
+ "ParameterSetName", @{ Name = "TotalParameterSets"; Expression = { "$($moduleDetails['TotalParameterSets'])" } }, `
+ "Parameters", @{ Name = "TotalParameters"; Expression = { "$($moduleDetails['TotalParameters'])" } }, `
+ "SourceScript", "LineNumber", "StartDateTime", "EndDateTime", "IsSuccess" |
+ Export-Csv -LiteralPath $testCoverageRawCsv -Encoding utf8 -NoTypeInformation -Force
+}
+
+$srcDir = Join-Path -Path $RepoLocation -ChildPath "src"
+$liveScenarios = Get-ChildItem -LiteralPath $srcDir -Recurse -Directory -Filter "LiveTests" | ForEach-Object {
+ Get-ChildItem -Path (Join-Path -Path $_.FullName -ChildPath "TestLiveScenarios.ps1") -File
+}
+$liveScenarios | ForEach-Object {
+ $moduleName = [regex]::match($_.FullName, "[\\|\/]src[\\|\/](?[a-zA-Z]+)[\\|\/]").Groups["ModuleName"].Value
+ if ($PSVersion -eq "latest") {
+ $PSVersion = (Get-Variable -Name PSVersionTable).Value.PSVersion.ToString()
+ }
+ Import-Module "./tools/TestFx/Assert.ps1" -Force
+ Import-Module "./tools/TestFx/Live/LiveTestUtility.psd1" -ArgumentList $moduleName, $BuildId, $OSVersion, $PSVersion, $DataLocation -Force
+ . $_
+ FillLiveTestCoverageAdditionalInfo -TestCoverageDataLocation $DataLocation -BuildId $BuildId -OSVersion $OSVersion -PSVersion $PSVersion -ModuleName $moduleName
+}
diff --git a/tools/TestFx/Live/LiveTestUtility.psd1 b/tools/TestFx/Live/LiveTestUtility.psd1
new file mode 100644
index 000000000000..a695e2594c89
--- /dev/null
+++ b/tools/TestFx/Live/LiveTestUtility.psd1
@@ -0,0 +1,136 @@
+# ----------------------------------------------------------------------------------
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+@{
+
+ # Script module or binary module file associated with this manifest.
+ RootModule = 'LiveTestUtility.psm1'
+
+ # Version number of this module.
+ ModuleVersion = '0.1.0'
+
+ # Supported PSEditions
+ CompatiblePSEditions = 'Core', 'Desktop'
+
+ # ID used to uniquely identify this module
+ GUID = '67e2e5f0-4157-41a5-b7f0-e193f438ad75'
+
+ # Author of this module
+ Author = 'Microsoft Corporation'
+
+ # Company or vendor of this module
+ CompanyName = 'Microsoft Corporation'
+
+ # Copyright statement for this module
+ Copyright = 'Microsoft Corporation. All rights reserved.'
+
+ # Description of the functionality provided by this module
+ Description = 'Execute Azure PowerShell Live Tests'
+
+ # Minimum version of the PowerShell engine required by this module
+ PowerShellVersion = '5.1'
+
+ # Name of the PowerShell host required by this module
+ # PowerShellHostName = ''
+
+ # Minimum version of the PowerShell host required by this module
+ # PowerShellHostVersion = ''
+
+ # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ DotNetFrameworkVersion = '4.7.2'
+
+ # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ # ClrVersion = ''
+
+ # Processor architecture (None, X86, Amd64) required by this module
+ # ProcessorArchitecture = ''
+
+ # Modules that must be imported into the global environment prior to importing this module
+ # RequiredModules = @()
+
+ # Assemblies that must be loaded prior to importing this module
+ # RequiredAssemblies = @()
+
+ # Script files (.ps1) that are run in the caller's environment prior to importing this module.
+ # ScriptsToProcess = @()
+
+ # Type files (.ps1xml) to be loaded when importing this module
+ # TypesToProcess = @()
+
+ # Format files (.ps1xml) to be loaded when importing this module
+ # FormatsToProcess = @()
+
+ # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
+ # NestedModules = @()
+
+ # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
+ FunctionsToExport = 'New-LiveTestRandomName', 'New-LiveTestResourceGroupName', 'New-LiveTestResourceName', 'New-LiveTestStorageAccountName', 'New-LiveTestResourceGroup', 'Clear-LiveTestResources', 'Invoke-LiveTestScenario'
+
+ # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
+ CmdletsToExport = @()
+
+ # Variables to export from this module
+ VariablesToExport = @()
+
+ # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
+ AliasesToExport = @()
+
+ # DSC resources to export from this module
+ # DscResourcesToExport = @()
+
+ # List of all modules packaged with this module
+ # ModuleList = @()
+
+ # List of all files packaged with this module
+ # FileList = @()
+
+ # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
+ PrivateData = @{
+
+ PSData = @{
+
+ # Tags applied to this module. These help with module discovery in online galleries.
+ # Tags = @()
+
+ # A URL to the license for this module.
+ # LicenseUri = ''
+
+ # A URL to the main website for this project.
+ # ProjectUri = ''
+
+ # A URL to an icon representing this module.
+ # IconUri = ''
+
+ # ReleaseNotes of this module
+ # ReleaseNotes = ''
+
+ # Prerelease string of this module
+ # Prerelease = ''
+
+ # Flag to indicate whether the module requires explicit user acceptance for install/update/save
+ # RequireLicenseAcceptance = $false
+
+ # External dependent modules of this module
+ # ExternalModuleDependencies = @()
+
+ } # End of PSData hashtable
+
+ } # End of PrivateData hashtable
+
+ # HelpInfo URI of this module
+ # HelpInfoURI = ''
+
+ # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
+ # DefaultCommandPrefix = ''
+
+}
diff --git a/tools/TestFx/Live/LiveTestUtility.psm1 b/tools/TestFx/Live/LiveTestUtility.psm1
new file mode 100644
index 000000000000..f5678132f3fe
--- /dev/null
+++ b/tools/TestFx/Live/LiveTestUtility.psm1
@@ -0,0 +1,329 @@
+# ----------------------------------------------------------------------------------
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+param (
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ModuleName,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $BuildId,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $OSVersion,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $PSVersion,
+
+ [Parameter()]
+ [ValidateScript({ Test-Path -LiteralPath $_ -PathType Container })]
+ [string] $DataLocation
+)
+
+New-Variable -Name ResourceGroupPrefix -Value "azpsliverg" -Scope Script -Option Constant
+New-Variable -Name ResourcePrefix -Value "azpslive" -Scope Script -Option Constant
+New-Variable -Name StorageAccountPrefix -Value "azpslivesa" -Scope Script -Option Constant
+
+New-Variable -Name CommandMaxRetryCount -Value 3 -Scope Script -Option Constant
+New-Variable -Name CommandDelay -Value 10 -Scope Script -Option Constant
+New-Variable -Name ScenarioMaxRetryCount -Value 5 -Scope Script -Option Constant
+New-Variable -Name ScenarioMaxDelay -Value 60 -Scope Script -Option Constant
+New-Variable -Name ScenarioDelay -Value 5 -Scope Script -Option Constant
+
+New-Variable -Name LiveTestAnalysisDirectory -Value (Join-Path -Path $DataLocation -ChildPath "LiveTestAnalysis") -Scope Script -Option Constant
+New-Variable -Name LiveTestRawDirectory -Value (Join-Path -Path $script:LiveTestAnalysisDirectory -ChildPath "Raw") -Scope Script -Option Constant
+New-Variable -Name LiveTestRawCsvFile -Value (Join-Path -Path $script:LiveTestRawDirectory -ChildPath "Az.$ModuleName.csv") -Scope Script -Option Constant
+
+function InitializeLiveTestModule {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ModuleName
+ )
+
+ if (!(Test-Path -LiteralPath $script:LiveTestAnalysisDirectory -PathType Container)) {
+ New-Item -Path $script:LiveTestAnalysisDirectory -ItemType Directory -Force
+ New-Item -Path $script:LiveTestRawDirectory -ItemType Directory -Force
+ }
+
+ ({} | Select-Object "BuildId", "OSVersion", "PSVersion", "Module", "Name", "Description", "StartDateTime", "EndDateTime", "IsSuccess", "Errors" | ConvertTo-Csv -NoTypeInformation)[0] | Out-File -LiteralPath $script:LiveTestRawCsvFile -Encoding utf8 -Force
+}
+
+function New-LiveTestRandomName {
+ [CmdletBinding()]
+ [OutputType([string])]
+ param ()
+
+ $alphanumerics = "0123456789abcdefghijklmnopqrstuvwxyz"
+ $randomName = $alphanumerics[(Get-Random -Maximum 10)]
+ for ($i = 0; $i -lt 9; $i ++) {
+ $randomName += $alphanumerics[(Get-Random -Maximum $alphanumerics.Length)]
+ }
+
+ $randomName
+}
+
+function New-LiveTestResourceGroupName {
+ [CmdletBinding()]
+ [OutputType([string])]
+ param ()
+
+ $rgPrefix = $script:ResourceGroupPrefix
+ $rgName = New-LiveTestRandomName
+
+ $rgFullName = "$rgPrefix$rgName"
+ $rgFullName
+}
+
+function New-LiveTestResourceGroup {
+ [CmdletBinding()]
+ param (
+ [Parameter(Position = 0)]
+ [Alias("ResourceGroupName")]
+ [ValidateNotNullOrEmpty()]
+ [ValidateScript({ $_ -match "^$script:ResourceGroupPrefix\d[a-zA-Z0-9]{9}$" })]
+ [string] $Name = (New-LiveTestResourceGroupName),
+
+ [Parameter(Position = 1)]
+ [ValidateNotNullOrEmpty()]
+ [string] $Location = "westus"
+ )
+
+ $rg = Invoke-LiveTestCommand -Command "New-AzResourceGroup -Name $Name -Location $Location"
+ $rg
+}
+
+function New-LiveTestResourceName {
+ [CmdletBinding()]
+ [OutputType([string])]
+ param ()
+
+ $rPrefix = $script:ResourcePrefix
+ $rName = New-LiveTestRandomName
+
+ $rFullName = "$rPrefix$rName"
+ $rFullName
+}
+
+function New-LiveTestStorageAccountName {
+ [CmdletBinding()]
+ [OutputType([string])]
+ param ()
+
+ $saPrefix = $script:StorageAccountPrefix
+ $saName = New-LiveTestRandomName
+
+ $saFullName = "$saPrefix$saName"
+ $saFullName
+}
+
+function Invoke-LiveTestCommand {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory, ValueFromPipeline)]
+ [ValidateNotNullOrEmpty()]
+ [string] $Command
+ )
+
+ $cmdRetryCount = 0
+
+ do {
+ try {
+ Write-Host "##[section]Start to execute the command '$Command'" -ForegroundColor Green
+ Write-Host "##[command]The command '$Command' is running" -ForegroundColor Cyan
+
+ $cmdResult = Invoke-Expression -Command $Command -ErrorAction Stop
+
+ Write-Host "##[section]Successfully executed the command '$Command'" -ForegroundColor Green
+ $cmdResult
+ break
+ }
+ catch {
+ $cmdErrorMessage = $_.Exception.Message
+ if ($cmdRetryCount -le $script:CommandMaxRetryCount) {
+ Write-Warning "Error occurred when executing the command '$Command' with error message '$cmdErrorMessage'."
+ Write-Warning "Live test will retry automatically in $script:CommandMaxRetryCount seconds."
+ Write-Host
+
+ Start-Sleep -Seconds $script:CommandDelay
+ $cmdRetryCount++
+ Write-Warning "Retrying #$cmdRetryCount to execute the command '$Command'."
+ }
+ else {
+ throw "Failed to execute the command '$Command' after retrying for $script:CommandMaxRetryCount time(s) with error message '$cmdErrorMessage'."
+ }
+ }
+ }
+ while ($true)
+}
+
+function Invoke-LiveTestScenario {
+ [CmdletBinding()]
+ [OutputType([bool])]
+ param (
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [string] $Name,
+
+ [Parameter()]
+ [ValidateNotNullOrEmpty()]
+ [string] $Description,
+
+ [Parameter()]
+ [ValidateNotNullOrEmpty()]
+ [string] $ResourceGroupLocation,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [scriptblock] $ScenarioScript
+ )
+
+ if (!(Test-Path -LiteralPath $script:LiveTestRawCsvFile -PathType Leaf -ErrorAction SilentlyContinue)) {
+ throw "Error occurred when initializing live tests. The csv file was not found."
+ }
+
+ Write-Host "##[group]Start to execute the live scenario '$Name'." -ForegroundColor Green
+
+ try {
+ $snrCsvData = [PSCustomObject]@{
+ BuildId = $BuildId
+ OSVersion = $OSVersion
+ PSVersion = $PSVersion
+ Module = $ModuleName
+ Name = $Name
+ Description = $Description
+ StartDateTime = (Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ss")
+ EndDateTime = $null
+ IsSuccess = $true
+ Errors = ""
+ }
+
+ $snrResourceGroupName = New-LiveTestResourceGroupName
+ $snrResourceGroupLocation = "westus"
+ if ($PSBoundParameters.ContainsKey("ResourceGroupLocation")) {
+ $snrResourceGroupLocation = $ResourceGroupLocation
+ }
+
+ Write-Host "##[section]Start to create a resource group."
+ Write-Host "##[section]Resource group name: $snrResourceGroupName" -ForegroundColor Green
+ Write-Host "##[section]Resource group location: $snrResourceGroupLocation" -ForegroundColor Green
+
+ $snrResourceGroup = New-LiveTestResourceGroup -Name $snrResourceGroupName -Location $snrResourceGroupLocation
+
+ Write-Host "##[section]Successfully created the resource group."
+
+ $snrRetryCount = 0
+ $snrRetryErrors = @()
+
+ do {
+ try {
+ Invoke-Command -ScriptBlock $ScenarioScript -ArgumentList $snrResourceGroup -ErrorAction Stop
+ Write-Host "##[section]Successfully executed the live scenario '$Name'." -ForegroundColor Green
+ break
+ }
+ catch {
+ $snrErrorMessage = $_.Exception.Message
+ if ($snrRetryCount -eq 0) {
+ $snrErrorDetails = "Error occurred when executing the live scenario [$Name] with error message [$snrErrorMessage]"
+ }
+ else {
+ $snrErrorDetails = "Error occurred when retrying #$snrRetryCount of the live scenario with error message [$snrErrorMessage]"
+ }
+
+ $snrInvocationInfo = $_.Exception.CommandInvocation
+ if ($null -ne $snrInvocationInfo) {
+ $snrErrorDetails += " thrown at line:$($snrInvocationInfo.ScriptLineNumber) char:$($snrInvocationInfo.OffsetInLine) by cmdlet [$($snrInvocationInfo.InvocationName)] on [$($snrInvocationInfo.Line.ToString().Trim())]."
+ }
+
+ $snrRetryErrors += $snrErrorDetails
+
+ if ($snrRetryCount -lt $script:ScenarioMaxRetryCount) {
+ $snrRetryCount++
+ $exponentialDelay = [Math]::Min((1 -shl ($snrRetryCount - 1)) * [int](Get-Random -Minimum ($script:ScenarioDelay * 0.8) -Maximum ($script:ScenarioDelay * 1.2)), $script:ScenarioMaxDelay)
+ Write-Warning "Error occurred when executing the live scenario '$Name' with error message '$snrErrorMessage'."
+ Write-Warning "Live test will retry automatically in $exponentialDelay seconds."
+ Write-Host
+
+ Start-Sleep -Seconds $exponentialDelay
+ Write-Warning "Retrying #$snrRetryCount to execute live scenario '$Name'."
+ }
+ else {
+ $snrCsvData.IsSuccess = $false
+ $snrCsvData.Errors = ConvertToLiveTestJsonErrors -Errors $snrRetryErrors
+ break
+ }
+ }
+ }
+ while ($true)
+ }
+ catch {
+ $snrErrorMessage = $_.Exception.Message
+ Write-Warning "Error occurred when executing the live scenario '$Name' with error message '$snrErrorMessage'"
+ $snrCsvData.IsSuccess = $false
+ $snrCsvData.Errors = ConvertToLiveTestJsonErrors -Errors $snrErrorMessage
+ }
+ finally {
+ if ($null -ne $snrResourceGroup) {
+ try {
+ Write-Host "##[section]Start to clean up the resource group '$snrResourceGroupName'." -ForegroundColor Green
+ Clear-LiveTestResources -Name $snrResourceGroupName
+ Write-Host "##[section]Successfully cleaned up the resource group '$snrResourceGroupName'" -ForegroundColor Green
+ }
+ catch {
+ if ($snrCsvData.Errors -eq "") {
+ $snrCsvData.Errors = ConvertToLiveTestJsonErrors -Errors $_.Exception.Message
+ }
+ }
+ }
+ $snrCsvData.EndDateTime = (Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ss")
+ Export-Csv -LiteralPath $script:LiveTestRawCsvFile -InputObject $snrCsvData -Encoding utf8 -NoTypeInformation -Append
+
+ Write-Host "##[endgroup]"
+ }
+}
+
+function Clear-LiveTestResources {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [Alias("ResourceGroupname")]
+ [string] $Name
+ )
+
+ Invoke-LiveTestCommand -Command "Remove-AzResourceGroup -Name $Name -Force"
+}
+
+function ConvertToLiveTestJsonErrors {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string[]] $Errors
+ )
+
+ $errorsObj = [PSCustomObject]@{
+ Exception = $Errors[0]
+ }
+ for ($n = 1; $n -lt $Errors.Count; $n++) {
+ $errorsObj | Add-Member -NotePropertyName "Retry$($n)Exception" -NotePropertyValue $Errors[$n]
+ }
+
+ (ConvertTo-Json $errorsObj -Compress)
+}
+
+InitializeLiveTestModule -ModuleName $ModuleName
diff --git a/tools/TestFx/Live/SaveLiveTestResult.ps1 b/tools/TestFx/Live/SaveLiveTestResult.ps1
new file mode 100644
index 000000000000..d72ea49f4e37
--- /dev/null
+++ b/tools/TestFx/Live/SaveLiveTestResult.ps1
@@ -0,0 +1,73 @@
+param (
+ [Parameter(Mandatory, Position = 0)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $ServicePrincipalTenantId,
+
+ [Parameter(Mandatory, Position = 1)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $ServicePrincipalId,
+
+ [Parameter(Mandatory, Position = 2)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ServicePrincipalSecret,
+
+ [Parameter(Mandatory, Position = 3)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ClusterName,
+
+ [Parameter(Mandatory, Position = 4)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ClusterRegion,
+
+ [Parameter(Mandatory, Position = 5)]
+ [ValidateNotNullOrEmpty()]
+ [string] $DatabaseName,
+
+ [Parameter(Mandatory, Position = 6)]
+ [ValidateNotNullOrEmpty()]
+ [string] $LiveTestTableName,
+
+ [Parameter(Mandatory, Position = 7)]
+ [ValidateNotNullOrEmpty()]
+ [string] $TestCoverageTableName,
+
+ [Parameter(Mandatory, Position = 8)]
+ [ValidateNotNullOrEmpty()]
+ [string] $DataLocation
+)
+
+Import-Module "./tools/TestFx/Utilities/KustoUtility.psd1" -Force
+
+$liveTestDir = Join-Path -Path $DataLocation -ChildPath "LiveTestAnalysis" | Join-Path -ChildPath "Raw"
+if (Test-Path -LiteralPath $liveTestDir) {
+ $liveTestResults = Get-ChildItem -Path $liveTestDir -Filter "*.csv" -File | Select-Object -ExpandProperty FullName
+ Import-KustoDataFromCsv `
+ -ServicePrincipalTenantId $ServicePrincipalTenantId `
+ -ServicePrincipalId $ServicePrincipalId `
+ -ServicePrincipalSecret $ServicePrincipalSecret `
+ -ClusterName $ClusterName `
+ -ClusterRegion $ClusterRegion `
+ -DatabaseName $DatabaseName `
+ -TableName $LiveTestTableName `
+ -CsvFile $liveTestResults
+}
+else {
+ Write-Warning "No live test data generated."
+}
+
+$testCoverageDir = Join-Path -Path $DataLocation -ChildPath "TestCoverageAnalysis" | Join-Path -ChildPath "Raw"
+if (Test-Path -LiteralPath $testCoverageDir) {
+ $testCoverageResults = Get-ChildItem -Path $testCoverageDir -Filter "*.csv" -File | Select-Object -ExpandProperty FullName
+ Import-KustoDataFromCsv `
+ -ServicePrincipalTenantId $ServicePrincipalTenantId `
+ -ServicePrincipalId $ServicePrincipalId `
+ -ServicePrincipalSecret $ServicePrincipalSecret `
+ -ClusterName $ClusterName `
+ -ClusterRegion $ClusterRegion `
+ -DatabaseName $DatabaseName `
+ -TableName $TestCoverageTableName `
+ -CsvFile $testCoverageResults
+}
+else {
+ Write-Warning "No test coverage data generated."
+}
diff --git a/tools/TestFx/Utilities/KustoUtility.psd1 b/tools/TestFx/Utilities/KustoUtility.psd1
new file mode 100644
index 000000000000..75b050fe57e4
--- /dev/null
+++ b/tools/TestFx/Utilities/KustoUtility.psd1
@@ -0,0 +1,136 @@
+# ----------------------------------------------------------------------------------
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+@{
+
+ # Script module or binary module file associated with this manifest.
+ RootModule = 'KustoUtility.psm1'
+
+ # Version number of this module.
+ ModuleVersion = '0.1.0'
+
+ # Supported PSEditions
+ CompatiblePSEditions = 'Core', 'Desktop'
+
+ # ID used to uniquely identify this module
+ GUID = 'bbbe3151-1ce8-42ca-8212-6addb8789336'
+
+ # Author of this module
+ Author = 'Microsoft Corporation'
+
+ # Company or vendor of this module
+ CompanyName = 'Microsoft Corporation'
+
+ # Copyright statement for this module
+ Copyright = 'Microsoft Corporation. All rights reserved.'
+
+ # Description of the functionality provided by this module
+ Description = 'Utility for data ingestion to Kusto'
+
+ # Minimum version of the PowerShell engine required by this module
+ PowerShellVersion = '5.1'
+
+ # Name of the PowerShell host required by this module
+ # PowerShellHostName = ''
+
+ # Minimum version of the PowerShell host required by this module
+ # PowerShellHostVersion = ''
+
+ # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ DotNetFrameworkVersion = '4.7.2'
+
+ # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ # ClrVersion = ''
+
+ # Processor architecture (None, X86, Amd64) required by this module
+ # ProcessorArchitecture = ''
+
+ # Modules that must be imported into the global environment prior to importing this module
+ # RequiredModules = @()
+
+ # Assemblies that must be loaded prior to importing this module
+ # RequiredAssemblies = @()
+
+ # Script files (.ps1) that are run in the caller's environment prior to importing this module.
+ # ScriptsToProcess = @()
+
+ # Type files (.ps1xml) to be loaded when importing this module
+ # TypesToProcess = @()
+
+ # Format files (.ps1xml) to be loaded when importing this module
+ # FormatsToProcess = @()
+
+ # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
+ # NestedModules = @()
+
+ # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
+ FunctionsToExport = 'Import-KustoDataFromCsv'
+
+ # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
+ CmdletsToExport = @()
+
+ # Variables to export from this module
+ VariablesToExport = @()
+
+ # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
+ AliasesToExport = @()
+
+ # DSC resources to export from this module
+ # DscResourcesToExport = @()
+
+ # List of all modules packaged with this module
+ # ModuleList = @()
+
+ # List of all files packaged with this module
+ # FileList = @()
+
+ # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
+ PrivateData = @{
+
+ PSData = @{
+
+ # Tags applied to this module. These help with module discovery in online galleries.
+ # Tags = @()
+
+ # A URL to the license for this module.
+ # LicenseUri = ''
+
+ # A URL to the main website for this project.
+ # ProjectUri = ''
+
+ # A URL to an icon representing this module.
+ # IconUri = ''
+
+ # ReleaseNotes of this module
+ # ReleaseNotes = ''
+
+ # Prerelease string of this module
+ # Prerelease = ''
+
+ # Flag to indicate whether the module requires explicit user acceptance for install/update/save
+ # RequireLicenseAcceptance = $false
+
+ # External dependent modules of this module
+ # ExternalModuleDependencies = @()
+
+ } # End of PSData hashtable
+
+ } # End of PrivateData hashtable
+
+ # HelpInfo URI of this module
+ # HelpInfoURI = ''
+
+ # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
+ # DefaultCommandPrefix = ''
+
+}
diff --git a/tools/TestFx/Utilities/KustoUtility.psm1 b/tools/TestFx/Utilities/KustoUtility.psm1
new file mode 100644
index 000000000000..f01e33733696
--- /dev/null
+++ b/tools/TestFx/Utilities/KustoUtility.psm1
@@ -0,0 +1,140 @@
+# ----------------------------------------------------------------------------------
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+function InitializeKustoPackages {
+ [CmdletBinding()]
+ param ()
+
+ $kustoPackagesDirectoryName = "KustoPackages"
+ $kustoPackagesDirectory = Join-Path -Path . -ChildPath $kustoPackagesDirectoryName
+ if (Test-Path -LiteralPath $kustoPackagesDirectory) {
+ Remove-Item -LiteralPath $kustoPackagesDirectory -Recurse -Force
+ }
+
+ New-Item -Path . -Name $kustoPackagesDirectoryName -ItemType Directory -Force
+
+ $kustoPackages = @(
+ @{ PackageName = "Azure.Core"; PackageVersion = "1.22.0"; DllName = "Azure.Core.dll" },
+ @{ PackageName = "Azure.Data.Tables"; PackageVersion = "12.5.0"; DllName = "Azure.Data.Tables.dll" },
+ @{ PackageName = "Azure.Storage.Blobs"; PackageVersion = "12.10.0"; DllName = "Azure.Storage.Blobs.dll" },
+ @{ PackageName = "Azure.Storage.Common"; PackageVersion = "12.9.0"; DllName = "Azure.Storage.Common.dll" },
+ @{ PackageName = "Azure.Storage.Queues"; PackageVersion = "12.8.0"; DllName = "Azure.Storage.Queues.dll" },
+ @{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform"; PackageVersion = "11.1.0"; DllName = "Kusto.Cloud.Platform.dll" },
+ @{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform.Aad"; PackageVersion = "11.1.0"; DllName = "Kusto.Cloud.Platform.Aad.dll" },
+ @{ PackageName = "Microsoft.Azure.Kusto.Data"; PackageVersion = "11.1.0"; DllName = "Kusto.Data.dll" },
+ @{ PackageName = "Microsoft.Azure.Kusto.Ingest"; PackageVersion = "11.1.0"; DllName = "Kusto.Ingest.dll" },
+ @{ PackageName = "Microsoft.Identity.Client"; PackageVersion = "4.46.0"; DllName = "Microsoft.Identity.Client.dll" },
+ @{ PackageName = "Microsoft.IdentityModel.Abstractions"; PackageVersion = "6.18.0"; DllName = "Microsoft.IdentityModel.Abstractions.dll" },
+ @{ PackageName = "Microsoft.IO.RecyclableMemoryStream"; PackageVersion = "2.2.0"; DllName = "Microsoft.IO.RecyclableMemoryStream.dll" },
+ @{ PackageName = "System.Memory.Data"; PackageVersion = "1.0.2"; DllName = "System.Memory.Data.dll" }
+ )
+
+ $kustoPackages | ForEach-Object {
+ $packageName = $_["PackageName"]
+ $packageVersion = $_["PackageVersion"]
+ $packageDll = $_["DllName"]
+ Install-Package -Name $packageName -RequiredVersion $packageVersion -Source "https://www.nuget.org/api/v2" -Destination $kustoPackagesDirectory -SkipDependencies -ExcludeVersion -Force
+ Add-Type -LiteralPath (Join-Path -Path $kustoPackagesDirectory -ChildPath $packageName | Join-Path -ChildPath "lib" | Join-Path -ChildPath "netstandard2.0" | Join-Path -ChildPath $packageDll)
+ }
+}
+
+function Import-KustoDataFromCsv {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $ServicePrincipalTenantId,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [guid] $ServicePrincipalId,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ServicePrincipalSecret,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ClusterName,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $ClusterRegion,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $DatabaseName,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $TableName,
+
+ [Parameter(Mandatory)]
+ [ValidateScript({ (Test-Path -LiteralPath $_ -PathType Leaf) -and ($_ -like "*.csv") })]
+ [string[]] $CsvFile
+ )
+
+ $ingestUri = "https://ingest-$ClusterName.$ClusterRegion.kusto.windows.net"
+ $ingestBuilder = [Kusto.Data.KustoConnectionStringBuilder]::new($ingestUri).WithAadApplicationKeyAuthentication($ServicePrincipalId, $ServicePrincipalSecret, $ServicePrincipalTenantId.ToString())
+ IngestDataFromCsv -IngestBuilder $ingestBuilder -DatabaseName $DatabaseName -TableName $TableName -CsvFile $CsvFile
+}
+
+function IngestDataFromCsv {
+ [CmdletBinding()]
+ param (
+ [Parameter(Mandatory)]
+ [ValidateNotNull()]
+ $IngestBuilder,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $DatabaseName,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string] $TableName,
+
+ [Parameter(Mandatory)]
+ [ValidateNotNullOrEmpty()]
+ [string[]] $CsvFile
+ )
+
+ try {
+ $ingestClient = [Kusto.Ingest.KustoIngestFactory]::CreateQueuedIngestClient($IngestBuilder)
+ $ingestionProps = [Kusto.Ingest.KustoQueuedIngestionProperties]::new($DatabaseName, $TableName)
+ $ingestionProps.Format = [Kusto.Data.Common.DataSourceFormat]::csv
+ $ingestionProps.IgnoreFirstRecord = $true
+
+ $ingestionMapping = [Kusto.Ingest.IngestionMapping]::new()
+ $ingestionMapping.IngestionMappingKind = [Kusto.Data.Ingestion.IngestionMappingKind]::Csv
+ $ingestionMapping.IngestionMappingReference = "$($TableName)_csv_mapping"
+
+ $ingestionProps.IngestionMapping = $ingestionMapping
+
+ $CsvFile | ForEach-Object {
+ Write-Host "##[section]Start to import the file $_." -ForegroundColor Green
+ $ingestClient.IngestFromStorageAsync($_, $ingestionProps).GetAwaiter().GetResult()
+ Write-Host "##[section]Successfully imported the file $_." -ForegroundColor Green
+ }
+ }
+ catch {
+ throw $_
+ }
+ finally {
+ if ($null -ne $ingestClient) {
+ $ingestClient.Dispose()
+ }
+ }
+}
+
+InitializeKustoPackages
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json
index f337ee3218f3..7600fd4147c3 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Accounts.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Accounts",
- "ModuleVersion": "2.10.4",
+ "ModuleVersion": "2.11.0",
"Cmdlets": [
{
"VerbName": "Add",
@@ -469,7 +469,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -1023,7 +1023,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -1323,7 +1323,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -1399,7 +1399,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -1445,7 +1445,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -1597,6 +1597,15 @@
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableLoginByWam",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
@@ -1830,6 +1839,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "EnableLoginByWam",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -1950,7 +1974,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2015,7 +2039,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2108,7 +2132,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2188,7 +2212,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2264,7 +2288,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2607,7 +2631,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2741,7 +2765,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -2953,7 +2977,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -3150,7 +3174,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -3392,7 +3416,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -3604,7 +3628,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -3843,7 +3867,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4060,7 +4084,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4314,7 +4338,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4530,7 +4554,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4587,7 +4611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Common.Authentication",
"Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Mode": "System.String",
@@ -4638,7 +4662,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4673,7 +4697,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5126,7 +5150,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5180,7 +5204,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5260,7 +5284,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5331,7 +5355,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5402,7 +5426,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5463,7 +5487,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5509,7 +5533,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5566,7 +5590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Common.Authentication",
"Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Mode": "System.String",
@@ -5617,7 +5641,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5652,7 +5676,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -6094,7 +6118,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSAccessToken, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpiresOn": "System.DateTimeOffset",
"Token": "System.String",
@@ -6379,7 +6403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Models",
"Name": "Microsoft.Azure.Commands.Profile.Models.PSConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope",
"Value": "System.Object",
@@ -6503,6 +6527,15 @@
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableLoginByWam",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
@@ -6624,6 +6657,21 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableLoginByWam",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
}
]
}
@@ -6901,7 +6949,7 @@
"VerbName": "Get",
"NounName": "AzContextAutosaveSetting",
"Name": "Get-AzContextAutosaveSetting",
- "ClassName": "Microsoft.Azure.Commands.Profile.Context.GetzureRmContextAutosaveSetting",
+ "ClassName": "Microsoft.Azure.Commands.Profile.Context.GetAzureRmContextAutosaveSetting",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -6911,7 +6959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Common.Authentication",
"Name": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.ContextAutosaveSettings, Microsoft.Azure.PowerShell.Authentication, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Settings": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Mode": "System.String",
@@ -6962,7 +7010,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -6997,7 +7045,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7050,7 +7098,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -8130,7 +8178,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8195,7 +8243,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8256,7 +8304,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8302,7 +8350,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8355,7 +8403,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSHttpResponse, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Int32",
"Headers": "System.Net.Http.Headers.HttpResponseHeaders",
@@ -9054,7 +9102,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProfileName": "System.String"
},
@@ -9215,7 +9263,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9314,7 +9362,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9390,7 +9438,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9481,7 +9529,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9639,7 +9687,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9689,7 +9737,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9849,7 +9897,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -9957,7 +10005,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -10048,7 +10096,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -10154,7 +10202,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -10222,7 +10270,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorCategory": "System.Management.Automation.ErrorCategoryInfo",
"ErrorDetails": "System.Management.Automation.ErrorDetails",
@@ -10273,7 +10321,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InnerException": "System.Boolean",
"Exception": "System.Exception",
@@ -10337,7 +10385,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo",
"ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo",
@@ -10902,7 +10950,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -10971,7 +11019,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11017,7 +11065,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11078,7 +11126,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11400,7 +11448,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11509,7 +11557,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11632,7 +11680,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11757,7 +11805,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11890,7 +11938,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12004,7 +12052,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12099,7 +12147,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12155,7 +12203,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -12222,7 +12270,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12287,7 +12335,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12348,7 +12396,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12836,7 +12884,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -13044,7 +13092,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -13609,7 +13657,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -13909,7 +13957,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -14063,7 +14111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Models",
"Name": "Microsoft.Azure.Commands.Profile.Models.PSConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSConfig, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.PowerShell.Common.Config.ConfigScope",
"Value": "System.Object",
@@ -14187,6 +14235,15 @@
"AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableLoginByWam",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
@@ -14308,6 +14365,21 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableLoginByWam",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
}
]
}
@@ -14892,7 +14964,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]",
"Verb": "System.String",
@@ -14969,7 +15041,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.10.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=2.10.4.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/Az.Aks.json b/tools/Tools.Common/SerializedCmdlets/Az.Aks.json
index 7dcfbb6769ee..dc45a9ec30fd 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Aks.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Aks.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Aks",
- "ModuleVersion": "5.1.0",
+ "ModuleVersion": "5.2.0",
"Cmdlets": [
{
"VerbName": "Disable",
@@ -16,7 +16,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -174,7 +174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -364,7 +364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -554,7 +554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -730,7 +730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -1042,7 +1042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -1200,7 +1200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -1659,7 +1659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -1759,7 +1759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -1938,7 +1938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -2215,7 +2215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -2378,7 +2378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -2976,7 +2976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSRunCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartedAt": "System.Nullable`1[System.DateTime]",
"FinishedAt": "System.Nullable`1[System.DateTime]",
@@ -3027,7 +3027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -3191,7 +3191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -3793,7 +3793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -4100,15 +4100,6 @@
},
"ValidateNotNullOrEmpty": false
},
- {
- "Name": "AksCustomHeader",
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "LoadBalancerSku",
"Type": {
@@ -4173,6 +4164,143 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "EnableEncryptionAtHost",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableUltraSSD",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NodeLinuxOSConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NodeKubeletConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NodeMaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PPG",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableFIPS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AutoScalerProfile",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GpuInstanceProfile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EdgeZone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ResourceGroupName",
"Type": {
@@ -4538,6 +4666,15 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -4858,21 +4995,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "AksCustomHeader",
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "LoadBalancerSku",
@@ -4981,11 +5103,11 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "EnableEncryptionAtHost",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4996,14 +5118,11 @@
},
{
"ParameterMetadata": {
- "Name": "LinuxProfileAdminUserName",
- "AliasList": [
- "AdminUserName"
- ],
+ "Name": "EnableUltraSSD",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5014,11 +5133,17 @@
},
{
"ParameterMetadata": {
- "Name": "DnsNamePrefix",
+ "Name": "NodeLinuxOSConfig",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -5029,11 +5154,24 @@
},
{
"ParameterMetadata": {
- "Name": "KubernetesVersion",
+ "Name": "NodeKubeletConfig",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -5044,7 +5182,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeName",
+ "Name": "NodeMaxSurge",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -5059,11 +5197,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodeMinCount",
+ "Name": "PPG",
"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"
},
"ValidateNotNullOrEmpty": false
},
@@ -5074,11 +5212,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodeMaxCount",
+ "Name": "EnableFIPS",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5089,11 +5227,30 @@
},
{
"ParameterMetadata": {
- "Name": "EnableNodeAutoScaling",
+ "Name": "AutoScalerProfile",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -5104,11 +5261,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
+ "Name": "GpuInstanceProfile",
"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"
},
"ValidateNotNullOrEmpty": false
},
@@ -5119,11 +5276,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodeOsDiskSize",
+ "Name": "EnableUptimeSLA",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5134,7 +5291,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeVmSize",
+ "Name": "EdgeZone",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -5149,11 +5306,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodePoolLabel",
+ "Name": "Location",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": false
},
@@ -5164,11 +5321,14 @@
},
{
"ParameterMetadata": {
- "Name": "NodePoolTag",
+ "Name": "LinuxProfileAdminUserName",
+ "AliasList": [
+ "AdminUserName"
+ ],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": false
},
@@ -5179,10 +5339,7 @@
},
{
"ParameterMetadata": {
- "Name": "SshKeyValue",
- "AliasList": [
- "SshKeyPath"
- ],
+ "Name": "DnsNamePrefix",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -5197,7 +5354,7 @@
},
{
"ParameterMetadata": {
- "Name": "AcrNameToAttach",
+ "Name": "KubernetesVersion",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -5212,11 +5369,11 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "NodeName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": false
},
@@ -5227,11 +5384,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "NodeMinCount",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": false
},
@@ -5242,14 +5399,12 @@
},
{
"ParameterMetadata": {
- "Name": "LoadBalancerAllocatedOutboundPort",
+ "Name": "NodeMaxCount",
"Type": {
"Namespace": "System",
"Name": "System.Int32",
"AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateRangeMin": 0,
- "ValidateRangeMax": 64000,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5259,11 +5414,11 @@
},
{
"ParameterMetadata": {
- "Name": "LoadBalancerManagedOutboundIpCount",
+ "Name": "EnableNodeAutoScaling",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5274,12 +5429,11 @@
},
{
"ParameterMetadata": {
- "Name": "LoadBalancerOutboundIp",
+ "Name": "NodeCount",
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": false
},
@@ -5290,12 +5444,11 @@
},
{
"ParameterMetadata": {
- "Name": "LoadBalancerOutboundIpPrefix",
+ "Name": "NodeOsDiskSize",
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": false
},
@@ -5306,14 +5459,12 @@
},
{
"ParameterMetadata": {
- "Name": "LoadBalancerIdleTimeoutInMinute",
+ "Name": "NodeVmSize",
"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"
},
- "ValidateRangeMin": 4,
- "ValidateRangeMax": 120,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5323,7 +5474,181 @@
},
{
"ParameterMetadata": {
- "Name": "ApiServerAccessAuthorizedIpRange",
+ "Name": "NodePoolLabel",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodePoolTag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SshKeyValue",
+ "AliasList": [
+ "SshKeyPath"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AcrNameToAttach",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoadBalancerAllocatedOutboundPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 64000,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoadBalancerManagedOutboundIpCount",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoadBalancerOutboundIp",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoadBalancerOutboundIpPrefix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoadBalancerIdleTimeoutInMinute",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateRangeMin": 4,
+ "ValidateRangeMax": 120,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiServerAccessAuthorizedIpRange",
"Type": {
"Namespace": "System",
"Name": "System.String[]",
@@ -5533,6 +5858,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -5910,21 +6250,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "AksCustomHeader",
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "LoadBalancerSku",
@@ -6033,11 +6358,11 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "EnableEncryptionAtHost",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -6048,14 +6373,11 @@
},
{
"ParameterMetadata": {
- "Name": "LinuxProfileAdminUserName",
- "AliasList": [
- "AdminUserName"
- ],
+ "Name": "EnableUltraSSD",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -6066,11 +6388,17 @@
},
{
"ParameterMetadata": {
- "Name": "DnsNamePrefix",
+ "Name": "NodeLinuxOSConfig",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -6081,11 +6409,24 @@
},
{
"ParameterMetadata": {
- "Name": "KubernetesVersion",
+ "Name": "NodeKubeletConfig",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -6096,7 +6437,7 @@
},
{
"ParameterMetadata": {
- "Name": "NodeName",
+ "Name": "NodeMaxSurge",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -6111,11 +6452,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodeMinCount",
+ "Name": "PPG",
"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"
},
"ValidateNotNullOrEmpty": false
},
@@ -6126,11 +6467,11 @@
},
{
"ParameterMetadata": {
- "Name": "NodeMaxCount",
+ "Name": "EnableFIPS",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -6141,11 +6482,30 @@
},
{
"ParameterMetadata": {
- "Name": "EnableNodeAutoScaling",
+ "Name": "AutoScalerProfile",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -6156,11 +6516,179 @@
},
{
"ParameterMetadata": {
- "Name": "NodeCount",
+ "Name": "GpuInstanceProfile",
"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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EdgeZone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LinuxProfileAdminUserName",
+ "AliasList": [
+ "AdminUserName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DnsNamePrefix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KubernetesVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeMinCount",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeMaxCount",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableNodeAutoScaling",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodeCount",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": false
},
@@ -6585,6 +7113,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -6644,7 +7187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -6759,7 +7302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -6934,6 +7477,109 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "EnableEncryptionAtHost",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableUltraSSD",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LinuxOSConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "KubeletConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PPG",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SpotMaxPrice",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableFIPS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GpuInstanceProfile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "KubernetesVersion",
"Type": {
@@ -6998,10 +7644,29 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
"AzureCredential"
],
"Type": {
@@ -7287,6 +7952,163 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "EnableEncryptionAtHost",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUltraSSD",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LinuxOSConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KubeletConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PPG",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SpotMaxPrice",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableFIPS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GpuInstanceProfile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -7392,6 +8214,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7459,7 +8312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -7723,6 +8576,163 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "EnableEncryptionAtHost",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUltraSSD",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LinuxOSConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KubeletConfig",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PPG",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SpotMaxPrice",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableFIPS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GpuInstanceProfile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -7828,6 +8838,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7981,7 +9022,128 @@
},
{
"ParameterMetadata": {
- "Name": "EnableNodePublicIp",
+ "Name": "EnableNodePublicIp",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NodePublicIPPrefixID",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleSetPriority",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleSetEvictionPolicy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VmSetType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AvailabilityZone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableEncryptionAtHost",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUltraSSD",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
@@ -7996,11 +9158,17 @@
},
{
"ParameterMetadata": {
- "Name": "NodePublicIPPrefixID",
+ "Name": "LinuxOSConfig",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
+ "SwapFileSizeMB": "System.Nullable`1[System.Int32]",
+ "TransparentHugePageEnabled": "System.String",
+ "TransparentHugePageDefrag": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -8011,11 +9179,24 @@
},
{
"ParameterMetadata": {
- "Name": "ScaleSetPriority",
+ "Name": "KubeletConfig",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
+ "CpuCfsQuota": "System.Nullable`1[System.Boolean]",
+ "FailSwapOn": "System.Nullable`1[System.Boolean]",
+ "ImageGcHighThreshold": "System.Nullable`1[System.Int32]",
+ "ImageGcLowThreshold": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxSizeMB": "System.Nullable`1[System.Int32]",
+ "ContainerLogMaxFiles": "System.Nullable`1[System.Int32]",
+ "PodMaxPids": "System.Nullable`1[System.Int32]",
+ "CpuManagerPolicy": "System.String",
+ "CpuCfsQuotaPeriod": "System.String",
+ "TopologyManagerPolicy": "System.String"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -8026,7 +9207,7 @@
},
{
"ParameterMetadata": {
- "Name": "ScaleSetEvictionPolicy",
+ "Name": "MaxSurge",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8041,7 +9222,7 @@
},
{
"ParameterMetadata": {
- "Name": "VmSetType",
+ "Name": "PPG",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8056,12 +9237,14 @@
},
{
"ParameterMetadata": {
- "Name": "AvailabilityZone",
+ "Name": "SpotMaxPrice",
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
},
"ValidateNotNullOrEmpty": false
},
@@ -8072,7 +9255,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "EnableFIPS",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
@@ -8085,6 +9268,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "GpuInstanceProfile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -8190,6 +9388,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -8262,7 +9491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -8407,7 +9636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -8898,7 +10127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -8992,7 +10221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -9107,7 +10336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -9519,7 +10748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -9767,7 +10996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -9907,7 +11136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -10003,6 +11232,43 @@
},
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "AutoScalerProfile",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ResourceGroupName",
"Type": {
@@ -10368,6 +11634,15 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -10408,7 +11683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -10521,6 +11796,55 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScalerProfile",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -11075,6 +12399,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -11181,6 +12520,55 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScalerProfile",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -11735,6 +13123,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -11859,6 +13262,55 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScalerProfile",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -12413,6 +13865,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -12564,6 +14031,55 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "AutoScalerProfile",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.ContainerService.Models",
+ "Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BalanceSimilarNodeGroups": "System.String",
+ "ScaleDownUtilizationThreshold": "System.String",
+ "ScaleDownUnreadyTime": "System.String",
+ "ScaleDownUnneededTime": "System.String",
+ "ScaleDownDelayAfterFailure": "System.String",
+ "ScaleDownDelayAfterDelete": "System.String",
+ "ScaleDownDelayAfterAdd": "System.String",
+ "SkipNodesWithLocalStorage": "System.String",
+ "ScanInterval": "System.String",
+ "NewPodScaleUpDelay": "System.String",
+ "MaxTotalUnreadyPercentage": "System.String",
+ "MaxNodeProvisionTime": "System.String",
+ "MaxGracefulTerminationSec": "System.String",
+ "MaxEmptyBulkDelete": "System.String",
+ "Expander": "System.String",
+ "OkTotalUnreadyCount": "System.String",
+ "SkipNodesWithSystemPods": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableUptimeSLA",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -13105,11 +14621,26 @@
},
{
"ParameterMetadata": {
- "Name": "HttpProxyConfigTrustedCa",
+ "Name": "HttpProxyConfigTrustedCa",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
"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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": false
},
@@ -13190,7 +14721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -13344,7 +14875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -13867,7 +15398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks",
"Name": "Microsoft.Azure.Commands.Aks.KubeTunnelJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.KubeTunnelJob, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.KubeTunnelJob, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HasMoreData": "System.Boolean",
"ChildJobs": "System.Collections.Generic.IList`1[System.Management.Automation.Job]",
@@ -14059,7 +15590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -14204,7 +15735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -14807,7 +16338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -14922,7 +16453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -14975,7 +16506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -15073,6 +16604,15 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "KubernetesVersion",
"Type": {
@@ -15136,6 +16676,25 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -15275,6 +16834,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -15380,6 +16954,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -15447,7 +17052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSKubernetesCluster, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
"NetworkProfile": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
@@ -15560,6 +17165,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -15665,6 +17285,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -15717,7 +17368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSNodePool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSNodePool, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -15832,6 +17483,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -15937,6 +17603,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -16061,6 +17758,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -16166,6 +17878,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -16272,6 +18015,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSurge",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "KubernetesVersion",
@@ -16377,6 +18135,37 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "NodeTaint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AksCustomHeader",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -16436,7 +18225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfile, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfile, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Upgrade": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem[]",
"OSType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Support.OSType",
@@ -16498,7 +18287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -16539,7 +18328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16549,7 +18338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16690,7 +18479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16706,7 +18495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16772,7 +18561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -16831,7 +18620,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16847,7 +18636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16947,7 +18736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16963,7 +18752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17036,7 +18825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterUpgradeProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterUpgradeProfile, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterUpgradeProfile, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolProfile": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile[]",
"ControlPlaneProfileUpgrade": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem[]",
@@ -17090,7 +18879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -17131,7 +18920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17141,7 +18930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17267,7 +19056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17283,7 +19072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17349,7 +19138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -17408,7 +19197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17424,7 +19213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17524,7 +19313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17540,7 +19329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17616,7 +19405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfileListResult",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfileListResult, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfileListResult, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Orchestrator": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile[]",
"Id": "System.String",
@@ -17676,7 +19465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17686,7 +19475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17794,7 +19583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17810,7 +19599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18191,7 +19980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -18241,7 +20030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18251,7 +20040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18409,7 +20198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18425,7 +20214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18521,7 +20310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -18595,7 +20384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18611,7 +20400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18756,7 +20545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18772,7 +20561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18918,7 +20707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -18968,7 +20757,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18978,7 +20767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19136,7 +20925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19152,7 +20941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19248,7 +21037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.IAksIdentity, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AgentPoolName": "System.String",
"Id": "System.String",
@@ -19322,7 +21111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19338,7 +21127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19483,7 +21272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19499,7 +21288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19635,7 +21424,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceLinuxProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ssh": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration",
"AdminUsername": "System.String"
@@ -19686,7 +21475,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey]"
},
@@ -19732,7 +21521,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey"
]
@@ -19740,7 +21529,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceSshPublicKey, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyData": "System.String"
},
@@ -19791,7 +21580,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancerProfile": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile",
"NatGatewayProfile": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterNATGatewayProfile",
@@ -19841,7 +21630,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedOutboundIPs": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs",
"OutboundIPPrefixes": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes",
@@ -19884,7 +21673,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileManagedOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Count": "System.Nullable`1[System.Int32]",
"CountIPv6": "System.Nullable`1[System.Int32]"
@@ -19939,7 +21728,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPPrefixes, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPPrefixes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]"
},
@@ -19976,7 +21765,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSResourceReference"
]
@@ -19984,7 +21773,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSResourceReference": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSResourceReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceReference, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -20021,7 +21810,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterLoadBalancerProfileOutboundIPs, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSResourceReference]"
},
@@ -20066,7 +21855,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterNATGatewayProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterNATGatewayProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterNATGatewayProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterNATGatewayProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedOutboundIPProfile": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterManagedOutboundIPProfile",
"EffectiveOutboundIPs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerService.Models.ResourceReference]",
@@ -20126,7 +21915,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterManagedOutboundIPProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterManagedOutboundIPProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterManagedOutboundIPProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterManagedOutboundIPProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Count": "System.Nullable`1[System.Int32]"
},
@@ -20181,7 +21970,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerService.Models.ResourceReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerService.Models.ResourceReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ContainerService.Models.ResourceReference, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.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.Management.ContainerService.Models.ResourceReference, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.ContainerService.Models.ResourceReference"
]
@@ -20189,7 +21978,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ResourceReference": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ResourceReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ResourceReference, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ResourceReference, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -20243,7 +22032,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceServicePrincipalProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientId": "System.String",
"Secret": "System.String"
@@ -20294,7 +22083,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAadProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdminGroupObjectIDs": "System.Collections.Generic.IList`1[System.String]",
"Managed": "System.Nullable`1[System.Boolean]",
@@ -20337,7 +22126,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAPIServerAccessProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizedIPRanges": "System.Collections.Generic.IList`1[System.String]",
"EnablePrivateCluster": "System.Nullable`1[System.Boolean]",
@@ -20378,7 +22167,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAutoUpgradeProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAutoUpgradeProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAutoUpgradeProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAutoUpgradeProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeChannel": "System.String"
},
@@ -20415,7 +22204,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterHTTPProxyConfig": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterHTTPProxyConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterHTTPProxyConfig, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterHTTPProxyConfig, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NoProxy": "System.Collections.Generic.IList`1[System.String]",
"HttpProxy": "System.String",
@@ -20455,7 +22244,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType]",
@@ -20495,7 +22284,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.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.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue"
@@ -20504,7 +22293,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -20542,7 +22331,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType"
]
@@ -20550,7 +22339,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSResourceIdentityType, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -20642,7 +22431,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity]",
"UserAssignedIdentityExceptions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException]",
@@ -20682,7 +22471,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSManagedClusterPodIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity"
]
@@ -20690,7 +22479,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfileUserAssignedIdentity",
"ProvisioningInfo": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningInfo",
@@ -20732,7 +22521,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfileUserAssignedIdentity": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfileUserAssignedIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfileUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProfileUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String",
"ClientId": "System.String",
@@ -20771,7 +22560,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningInfo": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningInfo, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningInfo, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningError"
},
@@ -20808,7 +22597,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningError": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningError, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningError, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody"
},
@@ -20845,7 +22634,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody]",
"Code": "System.String",
@@ -20885,7 +22674,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityProvisioningErrorBody"
]
@@ -20893,7 +22682,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSManagedClusterPodIdentityException, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException"
]
@@ -20901,7 +22690,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPodIdentityException, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PodLabels": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"NamespaceProperty": "System.String",
@@ -20949,7 +22738,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterWindowsProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GmsaProfile": "Microsoft.Azure.Management.ContainerService.Models.WindowsGmsaProfile",
"EnableCSIProxy": "System.Nullable`1[System.Boolean]",
@@ -20990,7 +22779,7 @@
"Microsoft.Azure.Management.ContainerService.Models.WindowsGmsaProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.WindowsGmsaProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.WindowsGmsaProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.WindowsGmsaProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"DnsServer": "System.String",
@@ -21046,7 +22835,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSPowerState": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSPowerState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSPowerState, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSPowerState, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String"
},
@@ -21083,7 +22872,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ExtendedLocation": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ExtendedLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ExtendedLocation, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ExtendedLocation, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String"
@@ -21134,7 +22923,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterOIDCIssuerProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterOIDCIssuerProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterOIDCIssuerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterOIDCIssuerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"IssuerURL": "System.String"
@@ -21185,7 +22974,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPropertiesAutoScalerProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BalanceSimilarNodeGroups": "System.String",
"ScaleDownUtilizationThreshold": "System.String",
@@ -21311,7 +23100,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureKeyVaultKms": "Microsoft.Azure.Management.ContainerService.Models.AzureKeyVaultKms",
"Defender": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefender"
@@ -21362,7 +23151,7 @@
"Microsoft.Azure.Management.ContainerService.Models.AzureKeyVaultKms": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.AzureKeyVaultKms",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.AzureKeyVaultKms, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.AzureKeyVaultKms, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"KeyId": "System.String",
@@ -21423,7 +23212,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefender": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefender",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefender, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefender, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SecurityMonitoring": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefenderSecurityMonitoring",
"LogAnalyticsWorkspaceResourceId": "System.String"
@@ -21474,7 +23263,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefenderSecurityMonitoring": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefenderSecurityMonitoring",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefenderSecurityMonitoring, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSecurityProfileDefenderSecurityMonitoring, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]"
},
@@ -21520,7 +23309,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSKU": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSKU",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSKU, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterSKU, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -21571,7 +23360,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfile": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfile, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BlobCSIDriver": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileBlobCSIDriver",
"DiskCSIDriver": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileDiskCSIDriver",
@@ -21632,7 +23421,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileBlobCSIDriver": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileBlobCSIDriver",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileBlobCSIDriver, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileBlobCSIDriver, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]"
},
@@ -21678,7 +23467,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileDiskCSIDriver": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileDiskCSIDriver",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileDiskCSIDriver, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileDiskCSIDriver, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]"
},
@@ -21724,7 +23513,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileFileCSIDriver": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileFileCSIDriver",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileFileCSIDriver, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileFileCSIDriver, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]"
},
@@ -21770,7 +23559,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileSnapshotController": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileSnapshotController",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileSnapshotController, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterStorageProfileSnapshotController, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]"
},
@@ -21816,7 +23605,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.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.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile"
@@ -21825,7 +23614,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterAddonProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAddonProfileIdentity",
"Enabled": "System.Boolean",
@@ -21864,7 +23653,7 @@
"Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAddonProfileIdentity": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAddonProfileIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAddonProfileIdentity, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAddonProfileIdentity, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String",
"ClientId": "System.String",
@@ -21920,7 +23709,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.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.Aks.Models.PSManagedClusterPropertiesIdentityProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile"
@@ -21929,7 +23718,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSManagedClusterPropertiesIdentityProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String",
"ClientId": "System.String",
@@ -21982,7 +23771,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.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.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile"
]
@@ -21990,7 +23779,7 @@
"Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile": {
"Namespace": "Microsoft.Azure.Commands.Aks.Models",
"Name": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Aks.Models.PSContainerServiceAgentPoolProfile, Microsoft.Azure.PowerShell.Cmdlets.Aks, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UpgradeSettings": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
"CreationData": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
@@ -22072,7 +23861,7 @@
"Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeSettings, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxSurge": "System.String"
},
@@ -22118,7 +23907,7 @@
"Microsoft.Azure.Management.ContainerService.Models.CreationData": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.CreationData",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.CreationData, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.CreationData, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceResourceId": "System.String"
},
@@ -22164,7 +23953,7 @@
"Microsoft.Azure.Management.ContainerService.Models.KubeletConfig": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.KubeletConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowedUnsafeSysctls": "System.Collections.Generic.IList`1[System.String]",
"CpuCfsQuota": "System.Nullable`1[System.Boolean]",
@@ -22264,7 +24053,7 @@
"Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.LinuxOSConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sysctls": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
"SwapFileSizeMB": "System.Nullable`1[System.Int32]",
@@ -22325,7 +24114,7 @@
"Microsoft.Azure.Management.ContainerService.Models.SysctlConfig": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.SysctlConfig, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetIpv4TcpTwReuse": "System.Nullable`1[System.Boolean]",
"VmMaxMapCount": "System.Nullable`1[System.Int32]",
@@ -22506,7 +24295,7 @@
"Microsoft.Azure.Management.ContainerService.Models.PowerState": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.PowerState",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.PowerState, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.PowerState, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String"
},
@@ -22568,7 +24357,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.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.Management.ContainerService.Models.PrivateLinkResource, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource"
]
@@ -22576,7 +24365,7 @@
"Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource": {
"Namespace": "Microsoft.Azure.Management.ContainerService.Models",
"Name": "Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerService.Models.PrivateLinkResource, Microsoft.Azure.PowerShell.Aks.Management.Sdk, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequiredMembers": "System.Collections.Generic.IList`1[System.String]",
"Id": "System.String",
@@ -22908,13 +24697,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem"
},
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfilePropertiesUpgradesItem, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsPreview": "System.Nullable`1[System.Boolean]",
"KubernetesVersion": "System.String"
@@ -22923,7 +24712,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Support.OSType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Support.OSType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Support.OSType, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Support.OSType, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -23001,7 +24790,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.SendAsyncStep, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Target": "System.Object",
"Method": "System.Reflection.MethodInfo"
@@ -23174,13 +24963,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile"
},
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfile, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Upgrade": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem[]",
"OSType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Support.OSType",
@@ -23191,13 +24980,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem"
},
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IManagedClusterPoolUpgradeProfileUpgradesItem, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsPreview": "System.Nullable`1[System.Boolean]",
"KubernetesVersion": "System.String"
@@ -23206,13 +24995,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile"
},
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorVersionProfile, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Upgrade": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile[]",
"Default": "System.Nullable`1[System.Boolean]",
@@ -23224,13 +25013,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile[], Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile[], Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile"
},
"Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile, Az.Aks.private, Version=5.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20190801.IOrchestratorProfile, Az.Aks.private, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsPreview": "System.Nullable`1[System.Boolean]",
"OrchestratorType": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ApiManagement.json b/tools/Tools.Common/SerializedCmdlets/Az.ApiManagement.json
index 1cd0e46ef729..0fa6b7b92882 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.ApiManagement.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.ApiManagement.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.ApiManagement",
- "ModuleVersion": "4.0.1",
+ "ModuleVersion": "4.0.2",
"Cmdlets": [
{
"VerbName": "Add",
@@ -29,7 +29,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -60,7 +60,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState"
]
@@ -107,7 +107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -156,7 +156,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState"
]
@@ -240,7 +240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -306,7 +306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -421,7 +421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -487,7 +487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -589,7 +589,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -759,7 +759,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -830,7 +830,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -910,7 +910,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -999,7 +999,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -1134,7 +1134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1200,7 +1200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1302,7 +1302,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -1763,7 +1763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1794,7 +1794,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -1856,7 +1856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -1905,7 +1905,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -1996,7 +1996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2045,7 +2045,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -2098,7 +2098,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -2512,7 +2512,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -2586,7 +2586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2670,7 +2670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2750,7 +2750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2815,7 +2815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2880,7 +2880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -2945,7 +2945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3002,7 +3002,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -3063,7 +3063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3129,7 +3129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3293,7 +3293,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRevision, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsOnline": "System.Nullable`1[System.Boolean]",
"IsCurrent": "System.Nullable`1[System.Boolean]",
@@ -3345,7 +3345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3402,7 +3402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3489,7 +3489,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -3549,7 +3549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3615,7 +3615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3779,7 +3779,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -3841,7 +3841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3898,7 +3898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -3978,7 +3978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4050,7 +4050,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessTokenSendingMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
"AuthorizationRequestMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
@@ -4123,7 +4123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4180,7 +4180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4359,7 +4359,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientSecret": "System.String"
},
@@ -4404,7 +4404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4461,7 +4461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4640,7 +4640,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -4706,7 +4706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4763,7 +4763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -4942,7 +4942,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -5003,7 +5003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5060,7 +5060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5209,7 +5209,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"ExpirationDate": "System.DateTime",
@@ -5270,7 +5270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5327,7 +5327,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5506,7 +5506,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -5570,7 +5570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5636,7 +5636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5800,7 +5800,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -5859,7 +5859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5907,7 +5907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -5972,7 +5972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6029,7 +6029,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -6090,7 +6090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6147,7 +6147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6212,7 +6212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6292,7 +6292,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6349,7 +6349,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayKey, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -6395,7 +6395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6443,7 +6443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6508,7 +6508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6565,7 +6565,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
"System": "System.Boolean",
@@ -6617,7 +6617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6692,7 +6692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6772,7 +6772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6852,7 +6852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -6932,7 +6932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7004,7 +7004,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -7061,7 +7061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7074,7 +7074,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7109,7 +7109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7159,7 +7159,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7174,7 +7174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7231,7 +7231,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientSecret": "System.String"
},
@@ -7276,7 +7276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7289,7 +7289,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7324,7 +7324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7374,7 +7374,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7389,7 +7389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7446,7 +7446,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
"IsBuffered": "System.Nullable`1[System.Boolean]",
@@ -7497,7 +7497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7545,7 +7545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7610,7 +7610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7667,7 +7667,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"Secret": "System.Boolean",
@@ -7729,7 +7729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7795,7 +7795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7860,7 +7860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7925,7 +7925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -7990,7 +7990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8047,7 +8047,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValueSecretValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.String"
},
@@ -8092,7 +8092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8140,7 +8140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8205,7 +8205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8262,7 +8262,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementNetworkStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectivityStatus": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[]",
"Location": "System.String",
@@ -8309,7 +8309,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -8412,7 +8412,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -8643,7 +8643,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenIdConnectProviderId": "System.String",
"Name": "System.String",
@@ -8696,7 +8696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8753,7 +8753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8818,7 +8818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8883,7 +8883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -8940,7 +8940,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientSecret, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientSecret": "System.String"
},
@@ -8985,7 +8985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9033,7 +9033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9098,7 +9098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9155,7 +9155,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TemplateParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
@@ -9211,7 +9211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9277,7 +9277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9357,7 +9357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9452,7 +9452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9522,7 +9522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9624,7 +9624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9734,7 +9734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9859,7 +9859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -9999,7 +9999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10101,7 +10101,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
"SubscriptionRequired": "System.Nullable`1[System.Boolean]",
@@ -10156,7 +10156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10222,7 +10222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10287,7 +10287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10352,7 +10352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10417,7 +10417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10487,7 +10487,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -10581,7 +10581,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -10767,7 +10767,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -10839,7 +10839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10914,7 +10914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -10979,7 +10979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11059,7 +11059,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11124,7 +11124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11189,7 +11189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11254,7 +11254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11311,7 +11311,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionKey, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -11357,7 +11357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11405,7 +11405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11470,7 +11470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11527,7 +11527,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -11575,7 +11575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11614,7 +11614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11671,7 +11671,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -11719,7 +11719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11758,7 +11758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11815,7 +11815,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -11863,7 +11863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11902,7 +11902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -11959,7 +11959,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -12007,7 +12007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12046,7 +12046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12103,7 +12103,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementTenantConfigurationSyncState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsExport": "System.Boolean",
"IsSynced": "System.Boolean",
@@ -12154,7 +12154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12193,7 +12193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12250,7 +12250,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
"Identities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12305,7 +12305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12345,7 +12345,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState"
]
@@ -12401,7 +12401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12466,7 +12466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12546,7 +12546,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState"
]
@@ -12594,7 +12594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12664,7 +12664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12712,7 +12712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12784,7 +12784,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -12858,7 +12858,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -12889,7 +12889,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -12943,7 +12943,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType"
]
@@ -12955,7 +12955,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -13018,7 +13018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13067,7 +13067,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -13127,7 +13127,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType"
]
@@ -13145,7 +13145,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -13252,7 +13252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13301,7 +13301,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -13361,7 +13361,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType"
]
@@ -13379,7 +13379,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -13486,7 +13486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -13535,7 +13535,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiFormat, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -13595,7 +13595,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType"
]
@@ -13613,7 +13613,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -13712,7 +13712,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -13955,7 +13955,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"None",
@@ -13969,7 +13969,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -13996,7 +13996,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion"
},
"ValidateNotNullOrEmpty": false
@@ -14006,7 +14006,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -14016,7 +14016,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -14026,7 +14026,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -14259,7 +14259,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"None",
@@ -14279,7 +14279,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -14318,7 +14318,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion"
},
"ValidateNotNullOrEmpty": false
@@ -14334,7 +14334,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -14350,7 +14350,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -14366,7 +14366,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -14550,7 +14550,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -14624,7 +14624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14682,7 +14682,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": true
@@ -14900,7 +14900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -14994,7 +14994,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": true
@@ -15350,7 +15350,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -15411,7 +15411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15486,7 +15486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15603,7 +15603,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -15677,7 +15677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15761,7 +15761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -15893,7 +15893,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -15953,7 +15953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16037,7 +16037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16147,7 +16147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16257,7 +16257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16359,7 +16359,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -16421,7 +16421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16452,7 +16452,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16563,7 +16563,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -16661,7 +16661,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessTokenSendingMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
"AuthorizationRequestMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
@@ -16734,7 +16734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -16819,7 +16819,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod"
},
"ValidateNotNullOrEmpty": false
@@ -16829,7 +16829,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType"
},
"ValidateNotNullOrEmpty": true
@@ -16839,7 +16839,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod"
},
"ValidateNotNullOrEmpty": true
@@ -16879,7 +16879,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod"
},
"ValidateNotNullOrEmpty": true
@@ -16933,7 +16933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17072,7 +17072,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod"
},
"ValidateNotNullOrEmpty": false
@@ -17088,7 +17088,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType"
},
"ValidateNotNullOrEmpty": true
@@ -17104,7 +17104,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod"
},
"ValidateNotNullOrEmpty": true
@@ -17168,7 +17168,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod"
},
"ValidateNotNullOrEmpty": true
@@ -17252,7 +17252,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -17318,7 +17318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17413,7 +17413,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -17428,7 +17428,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -17441,7 +17441,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -17484,7 +17484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -17633,7 +17633,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -17654,7 +17654,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -17673,7 +17673,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -17734,7 +17734,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -17994,7 +17994,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -18152,7 +18152,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -18420,7 +18420,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -18481,7 +18481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18565,7 +18565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18697,7 +18697,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"ExpirationDate": "System.DateTime",
@@ -18758,7 +18758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18808,7 +18808,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -18848,7 +18848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -18897,7 +18897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -18963,7 +18963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19012,7 +19012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -19079,7 +19079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19128,7 +19128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -19186,7 +19186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -19430,7 +19430,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
@@ -19494,7 +19494,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19539,7 +19539,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -19621,7 +19621,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19636,7 +19636,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -19732,7 +19732,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19853,7 +19853,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19974,7 +19974,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -20133,7 +20133,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -20197,7 +20197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20246,7 +20246,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -20259,7 +20259,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -20272,7 +20272,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -20311,7 +20311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20390,7 +20390,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -20409,7 +20409,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -20428,7 +20428,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -20485,7 +20485,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -20544,7 +20544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20575,7 +20575,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -20616,7 +20616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20665,7 +20665,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -20724,7 +20724,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -20785,7 +20785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -20869,7 +20869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21001,7 +21001,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
"System": "System.Boolean",
@@ -21053,7 +21053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21093,7 +21093,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType"
]
@@ -21140,7 +21140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21204,7 +21204,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType"
]
@@ -21275,7 +21275,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -21441,7 +21441,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -21498,7 +21498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21511,7 +21511,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -21628,7 +21628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -21647,7 +21647,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -21836,7 +21836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -21995,7 +21995,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
"IsBuffered": "System.Nullable`1[System.Boolean]",
@@ -22046,7 +22046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22142,7 +22142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22270,7 +22270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22365,7 +22365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22452,7 +22452,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"Secret": "System.Boolean",
@@ -22514,7 +22514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22573,7 +22573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -22613,7 +22613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22708,7 +22708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -22766,7 +22766,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenIdConnectProviderId": "System.String",
"Name": "System.String",
@@ -22819,7 +22819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -22912,7 +22912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23059,7 +23059,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TemplateParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
@@ -23115,7 +23115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.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.PsApiManagementParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter"
},
"ValidateNotNullOrEmpty": false
@@ -23201,7 +23201,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -23216,7 +23216,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse"
},
"ValidateNotNullOrEmpty": false
@@ -23252,7 +23252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23376,7 +23376,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter"
},
"ValidateNotNullOrEmpty": false
@@ -23392,7 +23392,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -23413,7 +23413,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse"
},
"ValidateNotNullOrEmpty": false
@@ -23467,7 +23467,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -23513,7 +23513,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -23526,7 +23526,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -23565,7 +23565,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -23584,7 +23584,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -23641,7 +23641,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
"SubscriptionRequired": "System.Nullable`1[System.Boolean]",
@@ -23696,7 +23696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23781,7 +23781,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState"
]
@@ -23819,7 +23819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -23952,7 +23952,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState"
]
@@ -24008,7 +24008,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
"Capacity": "System.Int32",
@@ -24084,7 +24084,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -24188,7 +24188,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -24295,7 +24295,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -24503,7 +24503,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -24667,7 +24667,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -24875,7 +24875,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -24947,7 +24947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25032,7 +25032,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -25070,7 +25070,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25164,7 +25164,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -25243,7 +25243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25337,7 +25337,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -25416,7 +25416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25510,7 +25510,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -25566,7 +25566,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"EncodedCertificate": "System.String",
@@ -25758,7 +25758,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
"Identities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -25813,7 +25813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -25871,7 +25871,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState"
]
@@ -25918,7 +25918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26012,7 +26012,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState"
]
@@ -26083,7 +26083,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserToken, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType",
"TokenExpiry": "System.DateTime",
@@ -26131,7 +26131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26153,7 +26153,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -26200,7 +26200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26234,7 +26234,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -26305,7 +26305,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -26440,7 +26440,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody",
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState",
@@ -26499,7 +26499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26574,7 +26574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26853,7 +26853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -26910,7 +26910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27010,7 +27010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27076,7 +27076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27191,7 +27191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27257,7 +27257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27372,7 +27372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27385,7 +27385,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -27457,7 +27457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27552,7 +27552,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -27689,7 +27689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27720,7 +27720,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -27796,7 +27796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -27891,7 +27891,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -28050,7 +28050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28081,7 +28081,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -28143,7 +28143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28238,7 +28238,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -28435,7 +28435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28448,7 +28448,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -28521,7 +28521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28601,7 +28601,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -28800,7 +28800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28857,7 +28857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -28957,7 +28957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29014,7 +29014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29114,7 +29114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29136,7 +29136,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -29199,7 +29199,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29279,7 +29279,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -29477,7 +29477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29534,7 +29534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29634,7 +29634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29665,7 +29665,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -29731,7 +29731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -29826,7 +29826,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -30027,7 +30027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30049,7 +30049,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -30110,7 +30110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30190,7 +30190,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -30386,7 +30386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30417,7 +30417,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -30480,7 +30480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30575,7 +30575,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NegotiateClientCertificate": "System.Nullable`1[System.Boolean]",
"Hostname": "System.String",
@@ -30773,7 +30773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30830,7 +30830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30930,7 +30930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -30943,7 +30943,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -30987,7 +30987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31006,7 +31006,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -31087,7 +31087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31144,7 +31144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31244,7 +31244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31301,7 +31301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31401,7 +31401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31458,7 +31458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31558,7 +31558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31633,7 +31633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31763,7 +31763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31838,7 +31838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31918,7 +31918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -31998,7 +31998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32093,7 +32093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32178,7 +32178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32244,7 +32244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32359,7 +32359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32425,7 +32425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32527,7 +32527,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -32697,7 +32697,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -32782,7 +32782,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -32904,7 +32904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -32926,7 +32926,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -33000,7 +33000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33080,7 +33080,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -33116,7 +33116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33211,7 +33211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33311,7 +33311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33377,7 +33377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33492,7 +33492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33558,7 +33558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -33660,7 +33660,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -34108,7 +34108,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperationResult, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody",
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState",
@@ -34167,7 +34167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34233,7 +34233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34335,7 +34335,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -34505,7 +34505,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -34618,7 +34618,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -34773,7 +34773,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -34847,7 +34847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -34869,7 +34869,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -34946,7 +34946,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -35118,7 +35118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -35212,7 +35212,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -35485,7 +35485,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -35592,7 +35592,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -35925,7 +35925,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -36205,7 +36205,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -36276,7 +36276,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -36359,7 +36359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -36381,7 +36381,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -36458,7 +36458,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -36645,7 +36645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -36739,7 +36739,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -37012,7 +37012,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApi, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]",
"IsOnline": "System.Boolean",
@@ -37119,7 +37119,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -37452,7 +37452,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"ValidateNotNullOrEmpty": false
@@ -37732,7 +37732,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -37792,7 +37792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -37823,7 +37823,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -37912,7 +37912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38052,7 +38052,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchemaId": "System.String",
"ApiId": "System.String",
@@ -38371,7 +38371,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -38433,7 +38433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38446,7 +38446,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -38484,7 +38484,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -38555,7 +38555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -38604,7 +38604,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -38710,7 +38710,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiVersionSet, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VersioningScheme": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme",
"ApiVersionSetId": "System.String",
@@ -38751,7 +38751,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -38872,7 +38872,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -38985,7 +38985,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOAuth2AuthorizationServer, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessTokenSendingMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[]",
"AuthorizationRequestMethods": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[]",
@@ -39058,7 +39058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39143,7 +39143,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod"
},
"ValidateNotNullOrEmpty": false
@@ -39153,7 +39153,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType"
},
"ValidateNotNullOrEmpty": true
@@ -39163,7 +39163,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod"
},
"ValidateNotNullOrEmpty": true
@@ -39203,7 +39203,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod"
},
"ValidateNotNullOrEmpty": true
@@ -39266,7 +39266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39405,7 +39405,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod"
},
"ValidateNotNullOrEmpty": false
@@ -39421,7 +39421,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType"
},
"ValidateNotNullOrEmpty": true
@@ -39437,7 +39437,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod"
},
"ValidateNotNullOrEmpty": true
@@ -39501,7 +39501,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod"
},
"ValidateNotNullOrEmpty": true
@@ -39600,7 +39600,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -39666,7 +39666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -39688,7 +39688,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -39785,7 +39785,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -39800,7 +39800,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -39813,7 +39813,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -39865,7 +39865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40014,7 +40014,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -40035,7 +40035,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -40054,7 +40054,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -40123,7 +40123,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackend, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credentials": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential",
"Proxy": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy",
@@ -40268,7 +40268,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -40289,7 +40289,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -40308,7 +40308,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -40492,7 +40492,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -40513,7 +40513,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -40532,7 +40532,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -40608,7 +40608,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"ExpirationDate": "System.DateTime",
@@ -40669,7 +40669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40728,7 +40728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -40768,7 +40768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40832,7 +40832,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -40898,7 +40898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -40962,7 +40962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41093,7 +41093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -41151,7 +41151,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -41215,7 +41215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41237,7 +41237,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -41295,7 +41295,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -41308,7 +41308,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41321,7 +41321,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41369,7 +41369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -41448,7 +41448,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -41467,7 +41467,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41486,7 +41486,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41551,7 +41551,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
"BackendSetting": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting",
@@ -41609,7 +41609,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -41628,7 +41628,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41647,7 +41647,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41757,7 +41757,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -41776,7 +41776,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41795,7 +41795,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41890,7 +41890,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -41909,7 +41909,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -41928,7 +41928,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -42000,7 +42000,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType",
"System": "System.Boolean",
@@ -42052,7 +42052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -42127,7 +42127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -42244,7 +42244,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -42301,7 +42301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -42314,7 +42314,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -42323,7 +42323,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -42464,7 +42464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -42483,7 +42483,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -42680,7 +42680,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType",
"ClientId": "System.String",
@@ -43081,7 +43081,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLogger, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType",
"IsBuffered": "System.Nullable`1[System.Boolean]",
@@ -43132,7 +43132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43234,7 +43234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43374,7 +43374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43484,7 +43484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43586,7 +43586,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"Secret": "System.Boolean",
@@ -43648,7 +43648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43745,7 +43745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -43896,7 +43896,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOpenIdConnectProvider, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OpenIdConnectProviderId": "System.String",
"Name": "System.String",
@@ -43949,7 +43949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44051,7 +44051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44213,7 +44213,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TemplateParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest",
@@ -44269,7 +44269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44345,7 +44345,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter"
},
"ValidateNotNullOrEmpty": false
@@ -44355,7 +44355,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -44370,7 +44370,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse"
},
"ValidateNotNullOrEmpty": false
@@ -44415,7 +44415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44539,7 +44539,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter"
},
"ValidateNotNullOrEmpty": false
@@ -44555,7 +44555,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -44576,7 +44576,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse"
},
"ValidateNotNullOrEmpty": false
@@ -44658,7 +44658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44778,7 +44778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -44918,7 +44918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45073,7 +45073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45243,7 +45243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45375,7 +45375,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProduct, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState",
"SubscriptionRequired": "System.Nullable`1[System.Boolean]",
@@ -45430,7 +45430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45515,7 +45515,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState"
]
@@ -45562,7 +45562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45695,7 +45695,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState"
]
@@ -45766,7 +45766,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -45838,7 +45838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -45860,7 +45860,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -45935,7 +45935,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -46003,7 +46003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46112,7 +46112,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -46209,7 +46209,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscription, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState",
"CreatedDate": "System.DateTime",
@@ -46320,7 +46320,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -46492,7 +46492,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=4.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.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState"
]
@@ -46596,7 +46596,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Id": "System.String",
@@ -46644,7 +46644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46701,7 +46701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46788,7 +46788,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUser, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState",
"Identities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -46843,7 +46843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -46901,7 +46901,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -46954,7 +46954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47048,7 +47048,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -47131,7 +47131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -47187,7 +47187,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"ExpirationDate": "System.DateTime",
@@ -47206,7 +47206,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"Secret": "System.Boolean",
@@ -47298,7 +47298,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"ExpirationDate": "System.DateTime",
@@ -47323,7 +47323,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
"Secret": "System.Boolean",
@@ -47418,7 +47418,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -47479,7 +47479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47519,7 +47519,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -47573,7 +47573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47744,7 +47744,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiRelease, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
"UpdatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -47837,7 +47837,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -47898,7 +47898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -47920,7 +47920,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -48019,7 +48019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48159,7 +48159,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCache, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CacheId": "System.String",
"Description": "System.String",
@@ -48524,7 +48524,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -48583,7 +48583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48605,7 +48605,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -48640,7 +48640,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -48690,7 +48690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"ServiceName": "System.String"
@@ -48739,7 +48739,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -48806,7 +48806,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocationData": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation",
"GatewayId": "System.String",
@@ -48844,7 +48844,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -48941,7 +48941,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -49023,7 +49023,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -49097,7 +49097,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -49267,7 +49267,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -49344,7 +49344,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -49415,7 +49415,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagement, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PortalCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
"ManagementCustomHostnameConfiguration": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration",
@@ -49516,7 +49516,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -49656,7 +49656,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -49891,7 +49891,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"HostnameType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType",
@@ -49938,7 +49938,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Expiry": "System.DateTime",
"Subject": "System.String",
@@ -49982,7 +49982,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -50077,13 +50077,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCustomHostNameConfiguration"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentity": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation]",
"PrincipalId": "System.String",
@@ -50123,7 +50123,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=4.0.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.ApiManagement.Models.PsApiManagementUserAssignedInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation"
@@ -50132,7 +50132,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementUserAssignedInformation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "GetType",
@@ -50166,7 +50166,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendProtocol": "System.Collections.Hashtable",
"BackendProtocol": "System.Collections.Hashtable",
@@ -50211,13 +50211,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSystemCertificate, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateInformation": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation",
"EncodedCertificate": "System.String",
@@ -50257,7 +50257,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VnetId": "System.Guid",
"SubnetName": "System.String",
@@ -50301,7 +50301,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVpnType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -50388,7 +50388,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=4.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.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion"
]
@@ -50396,7 +50396,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementRegion, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetwork": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork",
"Capacity": "System.Int32",
@@ -50663,13 +50663,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -50756,7 +50756,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementVersioningScheme, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -50843,13 +50843,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAccessTokenSendingMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -50936,13 +50936,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationRequestMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -51029,13 +51029,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementClientAuthenticationMethod, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -51122,13 +51122,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGrantType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -51215,7 +51215,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Authorization": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential",
"Certificate": "System.Collections.Generic.IEnumerable`1[System.String]",
@@ -51255,7 +51255,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementAuthorizationHeaderCredential, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scheme": "System.String",
"Parameter": "System.String"
@@ -51301,7 +51301,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBackendProxy, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProxyCredentials": "System.Management.Automation.PSCredential",
"Url": "System.String"
@@ -51344,7 +51344,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementServiceFabric, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServerX509Names": "System.Collections.Hashtable",
"MaxPartitionResolutionRetries": "System.Nullable`1[System.Int32]",
@@ -51408,7 +51408,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastStatus": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
"IdentityClientId": "System.String",
@@ -51447,7 +51447,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatusCode",
"TimeStampUtc": "System.DateTime",
@@ -51486,7 +51486,7 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatusCode": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatusCode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatusCode, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultLastStatusCode, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -51573,7 +51573,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementPipelineDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic",
"Response": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic"
@@ -51611,7 +51611,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementHttpMessageDiagnostic, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Body": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting",
"HeadersToLog": "System.String[]"
@@ -51649,7 +51649,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementBodyDiagnosticSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BodyBytesToLog": "System.Nullable`1[System.Int32]"
},
@@ -51686,7 +51686,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSamplingSetting, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SamplingPercentage": "System.Nullable`1[System.Double]",
"SamplingType": "System.String"
@@ -51732,7 +51732,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"City": "System.String",
@@ -51772,7 +51772,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGroupType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -51859,7 +51859,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementIdentityProviderType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -51946,7 +51946,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementLoggerType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -52033,13 +52033,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementConnectivityStatus, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdated": "System.DateTime",
"LastStatusChange": "System.DateTime",
@@ -52082,13 +52082,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Required": "System.Boolean",
"Name": "System.String",
@@ -52130,7 +52130,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRequest, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"QueryParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Headers": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
@@ -52170,13 +52170,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FormParameters": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameter[]",
"Examples": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample[]",
@@ -52217,13 +52217,13 @@
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample[]": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample"
},
"Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample": {
"Namespace": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models",
"Name": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Object",
"Summary": "System.String",
@@ -52263,13 +52263,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Representations": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation[]",
"StatusCode": "System.Int32",
@@ -52308,7 +52308,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementProductState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -52395,7 +52395,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSubscriptionState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -52482,7 +52482,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -52569,7 +52569,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -52656,7 +52656,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementUserKeyType, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -52743,7 +52743,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorBody, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Details": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[]",
"Message": "System.String",
@@ -52791,13 +52791,13 @@
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField[], Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField"
},
"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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.ErrorField, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String",
"Message": "System.String",
@@ -52845,7 +52845,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=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.TenantConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.App.json b/tools/Tools.Common/SerializedCmdlets/Az.App.json
new file mode 100644
index 000000000000..a45ef31af65d
--- /dev/null
+++ b/tools/Tools.Common/SerializedCmdlets/Az.App.json
@@ -0,0 +1,24696 @@
+{
+ "ModuleName": "Az.App",
+ "ModuleVersion": "0.1.1",
+ "Cmdlets": [
+ {
+ "VerbName": "Disable",
+ "NounName": "AzContainerAppRevision",
+ "Name": "Disable-AzContainerAppRevision",
+ "ClassName": "Disable-AzContainerAppRevision",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Deactivate",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Deactivate",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeactivateViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Enable",
+ "NounName": "AzContainerAppRevision",
+ "Name": "Enable-AzContainerAppRevision",
+ "ClassName": "Enable-AzContainerAppRevision",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Activate",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Activate",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ActivateViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerApp",
+ "Name": "Get-AzContainerApp",
+ "ClassName": "Get-AzContainerApp",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerApp",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerApp, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TemplateContainer": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "IngressCustomDomain": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "ConfigurationRegistry": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "ScaleRule": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "ConfigurationSecret": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "IngressTraffic": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "TemplateVolume": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30.IUserAssignedIdentities",
+ "ConfigurationActiveRevisionsMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode]",
+ "DaprAppProtocol": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState]",
+ "IngressTransport": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod]",
+ "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType]",
+ "IngressExternal": "System.Nullable`1[System.Boolean]",
+ "DaprEnabled": "System.Nullable`1[System.Boolean]",
+ "IngressAllowInsecure": "System.Nullable`1[System.Boolean]",
+ "IngressTargetPort": "System.Nullable`1[System.Int32]",
+ "DaprAppPort": "System.Nullable`1[System.Int32]",
+ "ScaleMinReplica": "System.Nullable`1[System.Int32]",
+ "ScaleMaxReplica": "System.Nullable`1[System.Int32]",
+ "CustomDomainVerificationId": "System.String",
+ "DaprAppId": "System.String",
+ "LatestRevisionFqdn": "System.String",
+ "ManagedEnvironmentId": "System.String",
+ "LatestRevisionName": "System.String",
+ "IdentityPrincipalId": "System.String",
+ "IngressFqdn": "System.String",
+ "TemplateRevisionSuffix": "System.String",
+ "IdentityTenantId": "System.String",
+ "OutboundIPAddress": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "List1",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppAuthConfig",
+ "Name": "Get-AzContainerAppAuthConfig",
+ "ClassName": "Get-AzContainerAppAuthConfig",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Get",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IAuthConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IAuthConfig, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IdentityProvider": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders",
+ "CookieExpirationConvention": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention]",
+ "ForwardProxyConvention": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention]",
+ "GlobalValidationUnauthenticatedClientAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2]",
+ "PlatformEnabled": "System.Nullable`1[System.Boolean]",
+ "NonceValidateNonce": "System.Nullable`1[System.Boolean]",
+ "LoginPreserveUrlFragmentsForLogin": "System.Nullable`1[System.Boolean]",
+ "HttpSettingRequireHttps": "System.Nullable`1[System.Boolean]",
+ "RouteApiPrefix": "System.String",
+ "ForwardProxyCustomProtoHeaderName": "System.String",
+ "NonceExpirationInterval": "System.String",
+ "ForwardProxyCustomHostHeaderName": "System.String",
+ "CookieExpirationTimeToExpiration": "System.String",
+ "PlatformRuntimeVersion": "System.String",
+ "GlobalValidationRedirectToProvider": "System.String",
+ "RouteLogoutEndpoint": "System.String",
+ "GlobalValidationExcludedPath": "System.String[]",
+ "LoginAllowedExternalRedirectUrl": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "AuthConfigName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AuthConfigName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppManagedEnv",
+ "Name": "Get-AzContainerAppManagedEnv",
+ "ClassName": "Get-AzContainerAppManagedEnv",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironment",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironment, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState]",
+ "VnetConfigurationInternal": "System.Nullable`1[System.Boolean]",
+ "ZoneRedundant": "System.Nullable`1[System.Boolean]",
+ "AppLogConfigurationDestination": "System.String",
+ "DaprAiConnectionString": "System.String",
+ "DaprAiInstrumentationKey": "System.String",
+ "DefaultDomain": "System.String",
+ "DeploymentError": "System.String",
+ "LogAnalyticConfigurationCustomerId": "System.String",
+ "LogAnalyticConfigurationSharedKey": "System.String",
+ "StaticIP": "System.String",
+ "VnetConfigurationDockerBridgeCidr": "System.String",
+ "VnetConfigurationInfrastructureSubnetId": "System.String",
+ "VnetConfigurationPlatformReservedCidr": "System.String",
+ "VnetConfigurationPlatformReservedDnsIP": "System.String",
+ "VnetConfigurationRuntimeSubnetId": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "List1",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppManagedEnvCert",
+ "Name": "Get-AzContainerAppManagedEnvCert",
+ "ClassName": "Get-AzContainerAppManagedEnvCert",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICertificate, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Value": "System.Byte[]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState]",
+ "Valid": "System.Nullable`1[System.Boolean]",
+ "ExpirationDate": "System.Nullable`1[System.DateTime]",
+ "IssueDate": "System.Nullable`1[System.DateTime]",
+ "Password": "System.Security.SecureString",
+ "Issuer": "System.String",
+ "PublicKeyHash": "System.String",
+ "SubjectName": "System.String",
+ "Thumbprint": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppManagedEnvDapr",
+ "Name": "Get-AzContainerAppManagedEnvDapr",
+ "ClassName": "Get-AzContainerAppManagedEnvDapr",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprComponent",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprComponent, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[]",
+ "Secret": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "IgnoreError": "System.Nullable`1[System.Boolean]",
+ "ComponentType": "System.String",
+ "InitTimeout": "System.String",
+ "Version": "System.String",
+ "Scope": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppManagedEnvDaprSecret",
+ "Name": "Get-AzContainerAppManagedEnvDaprSecret",
+ "ClassName": "Get-AzContainerAppManagedEnvDaprSecret",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppManagedEnvStorage",
+ "Name": "Get-AzContainerAppManagedEnvStorage",
+ "ClassName": "Get-AzContainerAppManagedEnvStorage",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironmentStorage",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironmentStorage, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AzureFileAccessMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode]",
+ "AzureFileAccountKey": "System.String",
+ "AzureFileAccountName": "System.String",
+ "AzureFileShareName": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppRevision",
+ "Name": "Get-AzContainerAppRevision",
+ "ClassName": "Get-AzContainerAppRevision",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRevision",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRevision, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TemplateContainer": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "ScaleRule": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "TemplateVolume": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "HealthState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState]",
+ "Active": "System.Nullable`1[System.Boolean]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "Replica": "System.Nullable`1[System.Int32]",
+ "ScaleMaxReplica": "System.Nullable`1[System.Int32]",
+ "ScaleMinReplica": "System.Nullable`1[System.Int32]",
+ "TrafficWeight": "System.Nullable`1[System.Int32]",
+ "Fqdn": "System.String",
+ "ProvisioningError": "System.String",
+ "TemplateRevisionSuffix": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Filter",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Filter",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "Get",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzContainerAppSecret",
+ "Name": "Get-AzContainerAppSecret",
+ "ClassName": "Get-AzContainerAppSecret",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppSecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppSecret, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerApp",
+ "Name": "New-AzContainerApp",
+ "ClassName": "New-AzContainerApp",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerApp",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerApp, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TemplateContainer": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "IngressCustomDomain": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "ConfigurationRegistry": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "ScaleRule": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "ConfigurationSecret": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "IngressTraffic": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "TemplateVolume": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30.IUserAssignedIdentities",
+ "ConfigurationActiveRevisionsMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode]",
+ "DaprAppProtocol": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState]",
+ "IngressTransport": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod]",
+ "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType]",
+ "IngressExternal": "System.Nullable`1[System.Boolean]",
+ "DaprEnabled": "System.Nullable`1[System.Boolean]",
+ "IngressAllowInsecure": "System.Nullable`1[System.Boolean]",
+ "IngressTargetPort": "System.Nullable`1[System.Int32]",
+ "DaprAppPort": "System.Nullable`1[System.Int32]",
+ "ScaleMinReplica": "System.Nullable`1[System.Int32]",
+ "ScaleMaxReplica": "System.Nullable`1[System.Int32]",
+ "CustomDomainVerificationId": "System.String",
+ "DaprAppId": "System.String",
+ "LatestRevisionFqdn": "System.String",
+ "ManagedEnvironmentId": "System.String",
+ "LatestRevisionName": "System.String",
+ "IdentityPrincipalId": "System.String",
+ "IngressFqdn": "System.String",
+ "TemplateRevisionSuffix": "System.String",
+ "IdentityTenantId": "System.String",
+ "OutboundIPAddress": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConfigurationActiveRevisionsMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConfigurationRegistry",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConfigurationSecret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAppPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAppProtocol",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IdentityUserAssignedIdentity",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressAllowInsecure",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressCustomDomain",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressExternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressTargetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressTraffic",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressTransport",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ManagedEnvironmentId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ScaleMaxReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ScaleMinReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ScaleRule",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateContainer",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateRevisionSuffix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateVolume",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationActiveRevisionsMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationRegistry",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationSecret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppProtocol",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityUserAssignedIdentity",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressAllowInsecure",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressCustomDomain",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressExternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTargetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTraffic",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTransport",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ManagedEnvironmentId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMaxReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMinReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleRule",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateContainer",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateRevisionSuffix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateVolume",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppAuthConfig",
+ "Name": "New-AzContainerAppAuthConfig",
+ "ClassName": "New-AzContainerAppAuthConfig",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IAuthConfig",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IAuthConfig, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IdentityProvider": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders",
+ "CookieExpirationConvention": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention]",
+ "ForwardProxyConvention": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention]",
+ "GlobalValidationUnauthenticatedClientAction": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2]",
+ "PlatformEnabled": "System.Nullable`1[System.Boolean]",
+ "NonceValidateNonce": "System.Nullable`1[System.Boolean]",
+ "LoginPreserveUrlFragmentsForLogin": "System.Nullable`1[System.Boolean]",
+ "HttpSettingRequireHttps": "System.Nullable`1[System.Boolean]",
+ "RouteApiPrefix": "System.String",
+ "ForwardProxyCustomProtoHeaderName": "System.String",
+ "NonceExpirationInterval": "System.String",
+ "ForwardProxyCustomHostHeaderName": "System.String",
+ "CookieExpirationTimeToExpiration": "System.String",
+ "PlatformRuntimeVersion": "System.String",
+ "GlobalValidationRedirectToProvider": "System.String",
+ "RouteLogoutEndpoint": "System.String",
+ "GlobalValidationExcludedPath": "System.String[]",
+ "LoginAllowedExternalRedirectUrl": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "AuthConfigName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CookieExpirationConvention",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CookieExpirationTimeToExpiration",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ForwardProxyConvention",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ForwardProxyCustomHostHeaderName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ForwardProxyCustomProtoHeaderName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GlobalValidationExcludedPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GlobalValidationRedirectToProvider",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GlobalValidationUnauthenticatedClientAction",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpSettingRequireHttps",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IdentityProvider",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CustomOpenIdConnectProvider": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "TwitterEnabled": "System.Nullable`1[System.Boolean]",
+ "GoogleEnabled": "System.Nullable`1[System.Boolean]",
+ "GitHubEnabled": "System.Nullable`1[System.Boolean]",
+ "FacebookEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureStaticWebAppEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryIsAutoProvisioned": "System.Nullable`1[System.Boolean]",
+ "LoginDisableWwwAuthenticate": "System.Nullable`1[System.Boolean]",
+ "AppleEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryEnabled": "System.Nullable`1[System.Boolean]",
+ "RegistrationAppId": "System.String",
+ "GoogleRegistrationClientSecretSettingName": "System.String",
+ "GoogleRegistrationClientId": "System.String",
+ "RegistrationAppSecretSettingName": "System.String",
+ "RegistrationConsumerSecretSettingName": "System.String",
+ "GitHubRegistrationClientSecretSettingName": "System.String",
+ "GitHubRegistrationClientId": "System.String",
+ "RegistrationOpenIdIssuer": "System.String",
+ "AzureActiveDirectoryRegistrationClientId": "System.String",
+ "FacebookGraphApiVersion": "System.String",
+ "RegistrationConsumerKey": "System.String",
+ "AppleRegistrationClientId": "System.String",
+ "AzureStaticWebAppsRegistrationClientId": "System.String",
+ "AppleRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateThumbprint": "System.String",
+ "AzureActiveDirectoryRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateIssuer": "System.String",
+ "RegistrationClientSecretCertificateSubjectAlternativeName": "System.String",
+ "LoginParameter": "System.String[]",
+ "GitHubLoginScope": "System.String[]",
+ "JwtClaimCheckAllowedClientApplication": "System.String[]",
+ "GoogleValidationAllowedAudience": "System.String[]",
+ "GoogleLoginScope": "System.String[]",
+ "FacebookLoginScope": "System.String[]",
+ "DefaultAuthorizationPolicyAllowedApplication": "System.String[]",
+ "AzureActiveDirectoryValidationAllowedAudience": "System.String[]",
+ "AppleLoginScope": "System.String[]",
+ "AllowedPrincipalIdentity": "System.String[]",
+ "JwtClaimCheckAllowedGroup": "System.String[]",
+ "AllowedPrincipalGroup": "System.String[]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LoginAllowedExternalRedirectUrl",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LoginPreserveUrlFragmentsForLogin",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NonceExpirationInterval",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NonceValidateNonce",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PlatformEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PlatformRuntimeVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RouteApiPrefix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RouteLogoutEndpoint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AuthConfigName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CookieExpirationConvention",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CookieExpirationTimeToExpiration",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ForwardProxyConvention",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ForwardProxyCustomHostHeaderName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ForwardProxyCustomProtoHeaderName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GlobalValidationExcludedPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GlobalValidationRedirectToProvider",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GlobalValidationUnauthenticatedClientAction",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpSettingRequireHttps",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityProvider",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CustomOpenIdConnectProvider": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "TwitterEnabled": "System.Nullable`1[System.Boolean]",
+ "GoogleEnabled": "System.Nullable`1[System.Boolean]",
+ "GitHubEnabled": "System.Nullable`1[System.Boolean]",
+ "FacebookEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureStaticWebAppEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryIsAutoProvisioned": "System.Nullable`1[System.Boolean]",
+ "LoginDisableWwwAuthenticate": "System.Nullable`1[System.Boolean]",
+ "AppleEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryEnabled": "System.Nullable`1[System.Boolean]",
+ "RegistrationAppId": "System.String",
+ "GoogleRegistrationClientSecretSettingName": "System.String",
+ "GoogleRegistrationClientId": "System.String",
+ "RegistrationAppSecretSettingName": "System.String",
+ "RegistrationConsumerSecretSettingName": "System.String",
+ "GitHubRegistrationClientSecretSettingName": "System.String",
+ "GitHubRegistrationClientId": "System.String",
+ "RegistrationOpenIdIssuer": "System.String",
+ "AzureActiveDirectoryRegistrationClientId": "System.String",
+ "FacebookGraphApiVersion": "System.String",
+ "RegistrationConsumerKey": "System.String",
+ "AppleRegistrationClientId": "System.String",
+ "AzureStaticWebAppsRegistrationClientId": "System.String",
+ "AppleRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateThumbprint": "System.String",
+ "AzureActiveDirectoryRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateIssuer": "System.String",
+ "RegistrationClientSecretCertificateSubjectAlternativeName": "System.String",
+ "LoginParameter": "System.String[]",
+ "GitHubLoginScope": "System.String[]",
+ "JwtClaimCheckAllowedClientApplication": "System.String[]",
+ "GoogleValidationAllowedAudience": "System.String[]",
+ "GoogleLoginScope": "System.String[]",
+ "FacebookLoginScope": "System.String[]",
+ "DefaultAuthorizationPolicyAllowedApplication": "System.String[]",
+ "AzureActiveDirectoryValidationAllowedAudience": "System.String[]",
+ "AppleLoginScope": "System.String[]",
+ "AllowedPrincipalIdentity": "System.String[]",
+ "JwtClaimCheckAllowedGroup": "System.String[]",
+ "AllowedPrincipalGroup": "System.String[]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoginAllowedExternalRedirectUrl",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoginPreserveUrlFragmentsForLogin",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NonceExpirationInterval",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NonceValidateNonce",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PlatformEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PlatformRuntimeVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RouteApiPrefix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RouteLogoutEndpoint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppCustomDomainObject",
+ "Name": "New-AzContainerAppCustomDomainObject",
+ "ClassName": "New-AzContainerAppCustomDomainObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.CustomDomain",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.CustomDomain, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BindingType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType]",
+ "CertificateId": "System.String",
+ "Name": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "CertificateId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "BindingType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CertificateId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "BindingType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppDaprMetadataObject",
+ "Name": "New-AzContainerAppDaprMetadataObject",
+ "ClassName": "New-AzContainerAppDaprMetadataObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.DaprMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.DaprMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "SecretRef": "System.String",
+ "Value": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppEnvironmentVarObject",
+ "Name": "New-AzContainerAppEnvironmentVarObject",
+ "ClassName": "New-AzContainerAppEnvironmentVarObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.EnvironmentVar",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.EnvironmentVar, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "SecretRef": "System.String",
+ "Value": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppIdentityProviderObject",
+ "Name": "New-AzContainerAppIdentityProviderObject",
+ "ClassName": "New-AzContainerAppIdentityProviderObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IdentityProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IdentityProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CustomOpenIdConnectProvider": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "TwitterEnabled": "System.Nullable`1[System.Boolean]",
+ "GoogleEnabled": "System.Nullable`1[System.Boolean]",
+ "GitHubEnabled": "System.Nullable`1[System.Boolean]",
+ "FacebookEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureStaticWebAppEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryIsAutoProvisioned": "System.Nullable`1[System.Boolean]",
+ "LoginDisableWwwAuthenticate": "System.Nullable`1[System.Boolean]",
+ "AppleEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryEnabled": "System.Nullable`1[System.Boolean]",
+ "RegistrationAppId": "System.String",
+ "GoogleRegistrationClientSecretSettingName": "System.String",
+ "GoogleRegistrationClientId": "System.String",
+ "RegistrationAppSecretSettingName": "System.String",
+ "RegistrationConsumerSecretSettingName": "System.String",
+ "GitHubRegistrationClientSecretSettingName": "System.String",
+ "GitHubRegistrationClientId": "System.String",
+ "RegistrationOpenIdIssuer": "System.String",
+ "AzureActiveDirectoryRegistrationClientId": "System.String",
+ "FacebookGraphApiVersion": "System.String",
+ "RegistrationConsumerKey": "System.String",
+ "AppleRegistrationClientId": "System.String",
+ "AzureStaticWebAppsRegistrationClientId": "System.String",
+ "AppleRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateThumbprint": "System.String",
+ "AzureActiveDirectoryRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateIssuer": "System.String",
+ "RegistrationClientSecretCertificateSubjectAlternativeName": "System.String",
+ "LoginParameter": "System.String[]",
+ "GitHubLoginScope": "System.String[]",
+ "JwtClaimCheckAllowedClientApplication": "System.String[]",
+ "GoogleValidationAllowedAudience": "System.String[]",
+ "GoogleLoginScope": "System.String[]",
+ "FacebookLoginScope": "System.String[]",
+ "DefaultAuthorizationPolicyAllowedApplication": "System.String[]",
+ "AzureActiveDirectoryValidationAllowedAudience": "System.String[]",
+ "AppleLoginScope": "System.String[]",
+ "AllowedPrincipalIdentity": "System.String[]",
+ "JwtClaimCheckAllowedGroup": "System.String[]",
+ "AllowedPrincipalGroup": "System.String[]"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "AllowedPrincipalGroup",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AllowedPrincipalIdentity",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AppleEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AppleLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AppleRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AppleRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureActiveDirectoryEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureActiveDirectoryIsAutoProvisioned",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureActiveDirectoryRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureActiveDirectoryRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureActiveDirectoryValidationAllowedAudience",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureStaticWebAppEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureStaticWebAppsRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomOpenIdConnectProvider",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultAuthorizationPolicyAllowedApplication",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "FacebookEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "FacebookGraphApiVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "FacebookLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GitHubEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GitHubLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GitHubRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GitHubRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GoogleEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GoogleLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GoogleRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GoogleRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GoogleValidationAllowedAudience",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "JwtClaimCheckAllowedClientApplication",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "JwtClaimCheckAllowedGroup",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LoginDisableWwwAuthenticate",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LoginParameter",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationAppSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationClientSecretCertificateIssuer",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationClientSecretCertificateSubjectAlternativeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationClientSecretCertificateThumbprint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationConsumerKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationConsumerSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RegistrationOpenIdIssuer",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TwitterEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AllowedPrincipalGroup",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AllowedPrincipalIdentity",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AppleEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AppleLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AppleRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AppleRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureActiveDirectoryEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureActiveDirectoryIsAutoProvisioned",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureActiveDirectoryRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureActiveDirectoryRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureActiveDirectoryValidationAllowedAudience",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureStaticWebAppEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureStaticWebAppsRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomOpenIdConnectProvider",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultAuthorizationPolicyAllowedApplication",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FacebookEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FacebookGraphApiVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FacebookLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GitHubEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GitHubLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GitHubRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GitHubRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GoogleEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GoogleLoginScope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GoogleRegistrationClientId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GoogleRegistrationClientSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GoogleValidationAllowedAudience",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "JwtClaimCheckAllowedClientApplication",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "JwtClaimCheckAllowedGroup",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoginDisableWwwAuthenticate",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LoginParameter",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationAppSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationClientSecretCertificateIssuer",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationClientSecretCertificateSubjectAlternativeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationClientSecretCertificateThumbprint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationConsumerKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationConsumerSecretSettingName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RegistrationOpenIdIssuer",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TwitterEnabled",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppManagedEnv",
+ "Name": "New-AzContainerAppManagedEnv",
+ "ClassName": "New-AzContainerAppManagedEnv",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironment",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironment, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState]",
+ "VnetConfigurationInternal": "System.Nullable`1[System.Boolean]",
+ "ZoneRedundant": "System.Nullable`1[System.Boolean]",
+ "AppLogConfigurationDestination": "System.String",
+ "DaprAiConnectionString": "System.String",
+ "DaprAiInstrumentationKey": "System.String",
+ "DefaultDomain": "System.String",
+ "DeploymentError": "System.String",
+ "LogAnalyticConfigurationCustomerId": "System.String",
+ "LogAnalyticConfigurationSharedKey": "System.String",
+ "StaticIP": "System.String",
+ "VnetConfigurationDockerBridgeCidr": "System.String",
+ "VnetConfigurationInfrastructureSubnetId": "System.String",
+ "VnetConfigurationPlatformReservedCidr": "System.String",
+ "VnetConfigurationPlatformReservedDnsIP": "System.String",
+ "VnetConfigurationRuntimeSubnetId": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AppLogConfigurationDestination",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAiConnectionString",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAiInstrumentationKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LogAnalyticConfigurationCustomerId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LogAnalyticConfigurationSharedKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VnetConfigurationDockerBridgeCidr",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VnetConfigurationInfrastructureSubnetId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VnetConfigurationInternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VnetConfigurationPlatformReservedCidr",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VnetConfigurationPlatformReservedDnsIP",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VnetConfigurationRuntimeSubnetId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ZoneRedundant",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AppLogConfigurationDestination",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAiConnectionString",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAiInstrumentationKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LogAnalyticConfigurationCustomerId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LogAnalyticConfigurationSharedKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VnetConfigurationDockerBridgeCidr",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VnetConfigurationInfrastructureSubnetId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VnetConfigurationInternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VnetConfigurationPlatformReservedCidr",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VnetConfigurationPlatformReservedDnsIP",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VnetConfigurationRuntimeSubnetId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ZoneRedundant",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppManagedEnvCert",
+ "Name": "New-AzContainerAppManagedEnvCert",
+ "ClassName": "New-AzContainerAppManagedEnvCert",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICertificate, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Value": "System.Byte[]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState]",
+ "Valid": "System.Nullable`1[System.Boolean]",
+ "ExpirationDate": "System.Nullable`1[System.DateTime]",
+ "IssueDate": "System.Nullable`1[System.DateTime]",
+ "Password": "System.Security.SecureString",
+ "Issuer": "System.String",
+ "PublicKeyHash": "System.String",
+ "SubjectName": "System.String",
+ "Thumbprint": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputFile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Password",
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InputFile",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Password",
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppManagedEnvDapr",
+ "Name": "New-AzContainerAppManagedEnvDapr",
+ "ClassName": "New-AzContainerAppManagedEnvDapr",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprComponent",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprComponent, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[]",
+ "Secret": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "IgnoreError": "System.Nullable`1[System.Boolean]",
+ "ComponentType": "System.String",
+ "InitTimeout": "System.String",
+ "Version": "System.String",
+ "Scope": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ComponentType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IgnoreError",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InitTimeout",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Metadata",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Scope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Secret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Version",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ComponentType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IgnoreError",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InitTimeout",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Metadata",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Scope",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Secret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Version",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppManagedEnvStorage",
+ "Name": "New-AzContainerAppManagedEnvStorage",
+ "ClassName": "New-AzContainerAppManagedEnvStorage",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironmentStorage",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IManagedEnvironmentStorage, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AzureFileAccessMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode]",
+ "AzureFileAccountKey": "System.String",
+ "AzureFileAccountName": "System.String",
+ "AzureFileShareName": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureFileAccessMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureFileAccountKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureFileAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureFileShareName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureFileAccessMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureFileAccountKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureFileAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureFileShareName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppProbeHeaderObject",
+ "Name": "New-AzContainerAppProbeHeaderObject",
+ "ClassName": "New-AzContainerAppProbeHeaderObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbeHttpGetHttpHeadersItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbeHttpGetHttpHeadersItem, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppProbeObject",
+ "Name": "New-AzContainerAppProbeObject",
+ "ClassName": "New-AzContainerAppProbeObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbe",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbe, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "HttpGetHttpHeader": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[]",
+ "HttpGetScheme": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme]",
+ "Type": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type]",
+ "FailureThreshold": "System.Nullable`1[System.Int32]",
+ "HttpGetPort": "System.Nullable`1[System.Int32]",
+ "InitialDelaySecond": "System.Nullable`1[System.Int32]",
+ "PeriodSecond": "System.Nullable`1[System.Int32]",
+ "SuccessThreshold": "System.Nullable`1[System.Int32]",
+ "TcpSocketPort": "System.Nullable`1[System.Int32]",
+ "TimeoutSecond": "System.Nullable`1[System.Int32]",
+ "TerminationGracePeriodSecond": "System.Nullable`1[System.Int64]",
+ "HttpGetHost": "System.String",
+ "HttpGetPath": "System.String",
+ "TcpSocketHost": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "FailureThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpGetHost",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpGetHttpHeader",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpGetPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpGetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpGetScheme",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InitialDelaySecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PeriodSecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SuccessThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TcpSocketHost",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TcpSocketPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TerminationGracePeriodSecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TimeoutSecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Type",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "FailureThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpGetHost",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpGetHttpHeader",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpGetPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpGetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpGetScheme",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InitialDelaySecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PeriodSecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SuccessThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TcpSocketHost",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TcpSocketPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TerminationGracePeriodSecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TimeoutSecond",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Type",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppRegistryCredentialObject",
+ "Name": "New-AzContainerAppRegistryCredentialObject",
+ "ClassName": "New-AzContainerAppRegistryCredentialObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.RegistryCredentials",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.RegistryCredentials, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "System.String",
+ "PasswordSecretRef": "System.String",
+ "Server": "System.String",
+ "Username": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Identity",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PasswordSecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Server",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Username",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Identity",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PasswordSecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Server",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Username",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppScaleRuleAuthObject",
+ "Name": "New-AzContainerAppScaleRuleAuthObject",
+ "ClassName": "New-AzContainerAppScaleRuleAuthObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ScaleRuleAuth",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ScaleRuleAuth, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SecretRef": "System.String",
+ "TriggerParameter": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "SecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TriggerParameter",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SecretRef",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TriggerParameter",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppScaleRuleObject",
+ "Name": "New-AzContainerAppScaleRuleObject",
+ "ClassName": "New-AzContainerAppScaleRuleObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ScaleRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ScaleRule, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CustomMetadata": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata",
+ "HttpMetadata": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata",
+ "AzureQueueAuth": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "CustomAuth": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "HttpAuth": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AzureQueueLength": "System.Nullable`1[System.Int32]",
+ "AzureQueueName": "System.String",
+ "CustomType": "System.String",
+ "Name": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "AzureQueueAuth",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureQueueLength",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AzureQueueName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomAuth",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomMetadata",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpAuth",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpMetadata",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AzureQueueAuth",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureQueueLength",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AzureQueueName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomAuth",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomMetadata",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpAuth",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpMetadata",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppSecretObject",
+ "Name": "New-AzContainerAppSecretObject",
+ "ClassName": "New-AzContainerAppSecretObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.Secret",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.Secret, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Value",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppTemplateObject",
+ "Name": "New-AzContainerAppTemplateObject",
+ "ClassName": "New-AzContainerAppTemplateObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.Container",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.Container, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Probe": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[]",
+ "Env": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[]",
+ "VolumeMount": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[]",
+ "ResourceCpu": "System.Nullable`1[System.Double]",
+ "Image": "System.String",
+ "Name": "System.String",
+ "ResourceEphemeralStorage": "System.String",
+ "ResourceMemory": "System.String",
+ "Arg": "System.String[]",
+ "Command": "System.String[]"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Arg",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Command",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Env",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Image",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Probe",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceCpu",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Double",
+ "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceMemory",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VolumeMount",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Arg",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Command",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Env",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Image",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Probe",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceCpu",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Double",
+ "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceMemory",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeMount",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppTrafficWeightObject",
+ "Name": "New-AzContainerAppTrafficWeightObject",
+ "ClassName": "New-AzContainerAppTrafficWeightObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.TrafficWeight",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.TrafficWeight, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "LatestRevision": "System.Nullable`1[System.Boolean]",
+ "Weight": "System.Nullable`1[System.Int32]",
+ "Label": "System.String",
+ "RevisionName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Label",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LatestRevision",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Weight",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Label",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LatestRevision",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Weight",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppVolumeMountObject",
+ "Name": "New-AzContainerAppVolumeMountObject",
+ "ClassName": "New-AzContainerAppVolumeMountObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.VolumeMount",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.VolumeMount, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "MountPath": "System.String",
+ "VolumeName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "MountPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "MountPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzContainerAppVolumeObject",
+ "Name": "New-AzContainerAppVolumeObject",
+ "ClassName": "New-AzContainerAppVolumeObject",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.Volume",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.Volume, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType]",
+ "StorageName": "System.String",
+ "Name": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "FromJson",
+ "Parameters": [
+ {
+ "Name": "node",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ {
+ "Name": "ToJson",
+ "Parameters": [
+ {
+ "Name": "container",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonObject"
+ },
+ {
+ "Name": "serializationMode",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SerializationMode"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ {
+ "Name": "DeserializeFromDictionary",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ {
+ "Name": "DeserializeFromPSObject",
+ "Parameters": [
+ {
+ "Name": "content",
+ "Type": "System.Management.Automation.PSObject"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ {
+ "Name": "FromJsonString",
+ "Parameters": [
+ {
+ "Name": "jsonText",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ {
+ "Name": "ToJsonString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "StorageType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzContainerApp",
+ "Name": "Remove-AzContainerApp",
+ "ClassName": "Remove-AzContainerApp",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzContainerAppAuthConfig",
+ "Name": "Remove-AzContainerAppAuthConfig",
+ "ClassName": "Remove-AzContainerAppAuthConfig",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "AuthConfigName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AuthConfigName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzContainerAppManagedEnv",
+ "Name": "Remove-AzContainerAppManagedEnv",
+ "ClassName": "Remove-AzContainerAppManagedEnv",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzContainerAppManagedEnvCert",
+ "Name": "Remove-AzContainerAppManagedEnvCert",
+ "ClassName": "Remove-AzContainerAppManagedEnvCert",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzContainerAppManagedEnvDapr",
+ "Name": "Remove-AzContainerAppManagedEnvDapr",
+ "ClassName": "Remove-AzContainerAppManagedEnvDapr",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DaprName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzContainerAppManagedEnvStorage",
+ "Name": "Remove-AzContainerAppManagedEnvStorage",
+ "ClassName": "Remove-AzContainerAppManagedEnvStorage",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Restart",
+ "NounName": "AzContainerAppRevision",
+ "Name": "Restart-AzContainerAppRevision",
+ "ClassName": "Restart-AzContainerAppRevision",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Restart",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Restart",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContainerAppName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RevisionName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "RestartViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzContainerApp",
+ "Name": "Update-AzContainerApp",
+ "ClassName": "Update-AzContainerApp",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerApp",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerApp, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TemplateContainer": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "IngressCustomDomain": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "ConfigurationRegistry": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "ScaleRule": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "ConfigurationSecret": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "IngressTraffic": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "TemplateVolume": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30.IUserAssignedIdentities",
+ "ConfigurationActiveRevisionsMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode]",
+ "DaprAppProtocol": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState]",
+ "IngressTransport": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod]",
+ "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType]",
+ "IngressExternal": "System.Nullable`1[System.Boolean]",
+ "DaprEnabled": "System.Nullable`1[System.Boolean]",
+ "IngressAllowInsecure": "System.Nullable`1[System.Boolean]",
+ "IngressTargetPort": "System.Nullable`1[System.Int32]",
+ "DaprAppPort": "System.Nullable`1[System.Int32]",
+ "ScaleMinReplica": "System.Nullable`1[System.Int32]",
+ "ScaleMaxReplica": "System.Nullable`1[System.Int32]",
+ "CustomDomainVerificationId": "System.String",
+ "DaprAppId": "System.String",
+ "LatestRevisionFqdn": "System.String",
+ "ManagedEnvironmentId": "System.String",
+ "LatestRevisionName": "System.String",
+ "IdentityPrincipalId": "System.String",
+ "IngressFqdn": "System.String",
+ "TemplateRevisionSuffix": "System.String",
+ "IdentityTenantId": "System.String",
+ "OutboundIPAddress": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConfigurationActiveRevisionsMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConfigurationRegistry",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConfigurationSecret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAppPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprAppProtocol",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DaprEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IdentityUserAssignedIdentity",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressAllowInsecure",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressCustomDomain",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressExternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressTargetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressTraffic",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IngressTransport",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ManagedEnvironmentId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ScaleMaxReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ScaleMinReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ScaleRule",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateContainer",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateRevisionSuffix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateVolume",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "UpdateExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ContainerAppName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationActiveRevisionsMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationRegistry",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationSecret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppProtocol",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityUserAssignedIdentity",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressAllowInsecure",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressCustomDomain",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressExternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTargetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTraffic",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTransport",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ManagedEnvironmentId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMaxReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMinReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleRule",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateContainer",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateRevisionSuffix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateVolume",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "UpdateViaIdentityExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationActiveRevisionsMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationRegistry",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationSecret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppProtocol",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityUserAssignedIdentity",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressAllowInsecure",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressCustomDomain",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressExternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTargetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTraffic",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTransport",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ManagedEnvironmentId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMaxReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMinReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleRule",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateContainer",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateRevisionSuffix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateVolume",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationActiveRevisionsMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationRegistry",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ConfigurationSecret",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprAppProtocol",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DaprEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityUserAssignedIdentity",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressAllowInsecure",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressCustomDomain",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressExternal",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTargetPort",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTraffic",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IngressTransport",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ManagedEnvironmentId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMaxReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleMinReplica",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ScaleRule",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateContainer",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateRevisionSuffix",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateVolume",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzContainerAppManagedEnvCert",
+ "Name": "Update-AzContainerAppManagedEnvCert",
+ "ClassName": "Update-AzContainerAppManagedEnvCert",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICertificate",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICertificate, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Value": "System.Byte[]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState]",
+ "Valid": "System.Nullable`1[System.Boolean]",
+ "ExpirationDate": "System.Nullable`1[System.DateTime]",
+ "IssueDate": "System.Nullable`1[System.DateTime]",
+ "Password": "System.Security.SecureString",
+ "Issuer": "System.String",
+ "PublicKeyHash": "System.String",
+ "SubjectName": "System.String",
+ "Thumbprint": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "UpdateExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EnvName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "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"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "UpdateViaIdentityExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.IAppIdentity, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AuthConfigName": "System.String",
+ "CertificateName": "System.String",
+ "ComponentName": "System.String",
+ "ContainerAppName": "System.String",
+ "EnvironmentName": "System.String",
+ "Id": "System.String",
+ "ReplicaName": "System.String",
+ "ResourceGroupName": "System.String",
+ "RevisionName": "System.String",
+ "SourceControlName": "System.String",
+ "StorageName": "System.String",
+ "SubscriptionId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "TypeDictionary": {
+ "System.String": {
+ "Name": "System.String"
+ },
+ "System.Boolean": {
+ "Name": "System.Boolean"
+ },
+ "System.Byte": {
+ "Name": "System.Byte"
+ },
+ "System.SByte": {
+ "Name": "System.SByte"
+ },
+ "System.Int16": {
+ "Name": "System.Int16"
+ },
+ "System.UInt16": {
+ "Name": "System.UInt16"
+ },
+ "System.Int32": {
+ "Name": "System.Int32"
+ },
+ "System.UInt32": {
+ "Name": "System.UInt32"
+ },
+ "System.Int64": {
+ "Name": "System.Int64"
+ },
+ "System.UInt64": {
+ "Name": "System.UInt64"
+ },
+ "System.Single": {
+ "Name": "System.Single"
+ },
+ "System.Double": {
+ "Name": "System.Double"
+ },
+ "System.Decimal": {
+ "Name": "System.Decimal"
+ },
+ "System.Char": {
+ "Name": "System.Char"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.SendAsyncStep, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Target": "System.Object",
+ "Method": "System.Reflection.MethodInfo"
+ },
+ "Methods": [
+ {
+ "Name": "Invoke",
+ "Parameters": [
+ {
+ "Name": "request",
+ "Type": "System.Net.Http.HttpRequestMessage"
+ },
+ {
+ "Name": "callback",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.IEventListener"
+ },
+ {
+ "Name": "next",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.ISendAsync"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]"
+ },
+ {
+ "Name": "BeginInvoke",
+ "Parameters": [
+ {
+ "Name": "request",
+ "Type": "System.Net.Http.HttpRequestMessage"
+ },
+ {
+ "Name": "callback",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.IEventListener"
+ },
+ {
+ "Name": "next",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.ISendAsync"
+ },
+ {
+ "Name": "__callback",
+ "Type": "System.AsyncCallback"
+ },
+ {
+ "Name": "object",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.IAsyncResult"
+ },
+ {
+ "Name": "EndInvoke",
+ "Parameters": [
+ {
+ "Name": "result",
+ "Type": "System.IAsyncResult"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]"
+ },
+ {
+ "Name": "GetObjectData",
+ "Parameters": [
+ {
+ "Name": "info",
+ "Type": "System.Runtime.Serialization.SerializationInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Runtime.Serialization.StreamingContext"
+ }
+ ],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetInvocationList",
+ "ReturnType": "System.Delegate[]"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "Clone",
+ "ReturnType": "System.Object"
+ },
+ {
+ "Name": "DynamicInvoke",
+ "Parameters": [
+ {
+ "Name": "args",
+ "Type": "System.Object[]"
+ }
+ ],
+ "ReturnType": "System.Object"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "object",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "method",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Object": {
+ "Namespace": "System",
+ "Name": "System.Object",
+ "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Reflection.MethodInfo": {
+ "Namespace": "System.Reflection",
+ "Name": "System.Reflection.MethodInfo",
+ "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": {
+ "Namespace": "System.Threading.Tasks",
+ "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Net.Http.HttpResponseMessage"
+ ]
+ },
+ "System.Net.Http.HttpResponseMessage": {
+ "Namespace": "System.Net.Http",
+ "Name": "System.Net.Http.HttpResponseMessage",
+ "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "System.IAsyncResult": {
+ "Namespace": "System",
+ "Name": "System.IAsyncResult",
+ "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Void": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Delegate[]": {
+ "Namespace": "System",
+ "Name": "System.Delegate[]",
+ "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.Delegate"
+ },
+ "System.Delegate": {
+ "Namespace": "System",
+ "Name": "System.Delegate",
+ "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Type": {
+ "Namespace": "System",
+ "Name": "System.Type",
+ "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainer, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Probe": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[]",
+ "Env": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[]",
+ "VolumeMount": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[]",
+ "ResourceCpu": "System.Nullable`1[System.Double]",
+ "Image": "System.String",
+ "Name": "System.String",
+ "ResourceEphemeralStorage": "System.String",
+ "ResourceMemory": "System.String",
+ "Arg": "System.String[]",
+ "Command": "System.String[]"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbe, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "HttpGetHttpHeader": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[]",
+ "HttpGetScheme": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme]",
+ "Type": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type]",
+ "FailureThreshold": "System.Nullable`1[System.Int32]",
+ "HttpGetPort": "System.Nullable`1[System.Int32]",
+ "InitialDelaySecond": "System.Nullable`1[System.Int32]",
+ "PeriodSecond": "System.Nullable`1[System.Int32]",
+ "SuccessThreshold": "System.Nullable`1[System.Int32]",
+ "TcpSocketPort": "System.Nullable`1[System.Int32]",
+ "TimeoutSecond": "System.Nullable`1[System.Int32]",
+ "TerminationGracePeriodSecond": "System.Nullable`1[System.Int64]",
+ "HttpGetHost": "System.String",
+ "HttpGetPath": "System.String",
+ "TcpSocketHost": "System.String"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IContainerAppProbeHttpGetHttpHeadersItem, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String"
+ }
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Scheme"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Management.Automation.CompletionResult"
+ ]
+ },
+ "System.Management.Automation.CompletionResult": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.CompletionResult",
+ "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.Type"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[System.Int32]": {
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
+ },
+ "System.Nullable`1[System.Int64]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IEnvironmentVar, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "SecretRef": "System.String",
+ "Value": "System.String"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolumeMount, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "MountPath": "System.String",
+ "VolumeName": "System.String"
+ }
+ },
+ "System.Nullable`1[System.Double]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "System.String[]": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomDomain, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "BindingType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType]",
+ "CertificateId": "System.String",
+ "Name": "System.String"
+ }
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.BindingType"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IRegistryCredentials, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "System.String",
+ "PasswordSecretRef": "System.String",
+ "Server": "System.String",
+ "Username": "System.String"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRule, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CustomMetadata": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata",
+ "HttpMetadata": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata",
+ "AzureQueueAuth": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "CustomAuth": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "HttpAuth": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AzureQueueLength": "System.Nullable`1[System.Int32]",
+ "AzureQueueName": "System.String",
+ "CustomType": "System.String",
+ "Name": "System.String"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ICustomScaleRuleMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IHttpScaleRuleMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IScaleRuleAuth, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SecretRef": "System.String",
+ "TriggerParameter": "System.String"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ISecret, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ITrafficWeight, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "LatestRevision": "System.Nullable`1[System.Boolean]",
+ "Weight": "System.Nullable`1[System.Int32]",
+ "Label": "System.String",
+ "RevisionName": "System.String"
+ }
+ },
+ "System.Nullable`1[System.Boolean]": {
+ "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",
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IVolume, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType]",
+ "StorageName": "System.String",
+ "Name": "System.String"
+ }
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.StorageType"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30.IUserAssignedIdentities": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30.IUserAssignedIdentities",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api30.IUserAssignedIdentities, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ActiveRevisionsMode"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AppProtocol"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ContainerAppProvisioningState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.IngressTransportMethod"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ManagedServiceIdentityType"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CustomOpenIdConnectProvider": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "TwitterEnabled": "System.Nullable`1[System.Boolean]",
+ "GoogleEnabled": "System.Nullable`1[System.Boolean]",
+ "GitHubEnabled": "System.Nullable`1[System.Boolean]",
+ "FacebookEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureStaticWebAppEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryIsAutoProvisioned": "System.Nullable`1[System.Boolean]",
+ "LoginDisableWwwAuthenticate": "System.Nullable`1[System.Boolean]",
+ "AppleEnabled": "System.Nullable`1[System.Boolean]",
+ "AzureActiveDirectoryEnabled": "System.Nullable`1[System.Boolean]",
+ "RegistrationAppId": "System.String",
+ "GoogleRegistrationClientSecretSettingName": "System.String",
+ "GoogleRegistrationClientId": "System.String",
+ "RegistrationAppSecretSettingName": "System.String",
+ "RegistrationConsumerSecretSettingName": "System.String",
+ "GitHubRegistrationClientSecretSettingName": "System.String",
+ "GitHubRegistrationClientId": "System.String",
+ "RegistrationOpenIdIssuer": "System.String",
+ "AzureActiveDirectoryRegistrationClientId": "System.String",
+ "FacebookGraphApiVersion": "System.String",
+ "RegistrationConsumerKey": "System.String",
+ "AppleRegistrationClientId": "System.String",
+ "AzureStaticWebAppsRegistrationClientId": "System.String",
+ "AppleRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateThumbprint": "System.String",
+ "AzureActiveDirectoryRegistrationClientSecretSettingName": "System.String",
+ "RegistrationClientSecretCertificateIssuer": "System.String",
+ "RegistrationClientSecretCertificateSubjectAlternativeName": "System.String",
+ "LoginParameter": "System.String[]",
+ "GitHubLoginScope": "System.String[]",
+ "JwtClaimCheckAllowedClientApplication": "System.String[]",
+ "GoogleValidationAllowedAudience": "System.String[]",
+ "GoogleLoginScope": "System.String[]",
+ "FacebookLoginScope": "System.String[]",
+ "DefaultAuthorizationPolicyAllowedApplication": "System.String[]",
+ "AzureActiveDirectoryValidationAllowedAudience": "System.String[]",
+ "AppleLoginScope": "System.String[]",
+ "AllowedPrincipalIdentity": "System.String[]",
+ "JwtClaimCheckAllowedGroup": "System.String[]",
+ "AllowedPrincipalGroup": "System.String[]"
+ }
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IIdentityProvidersCustomOpenIdConnectProviders, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CookieExpirationConvention"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.ForwardProxyConvention"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.UnauthenticatedClientActionV2"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.EnvironmentProvisioningState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Byte[]": {
+ "Namespace": "System",
+ "Name": "System.Byte[]",
+ "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.Byte"
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.CertificateProvisioningState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[System.DateTime]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.DateTime]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ]
+ },
+ "System.DateTime": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata[], Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IDaprMetadata, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "SecretRef": "System.String",
+ "Value": "System.String"
+ }
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.AccessMode"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionHealthState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.App.Support.RevisionProvisioningState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode, Az.App.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Item": "Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json.JsonNode"
+ },
+ "Methods": [
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ApplicationInsights.json b/tools/Tools.Common/SerializedCmdlets/Az.ApplicationInsights.json
index 3fbce62be396..3785dce97a59 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.ApplicationInsights.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.ApplicationInsights.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.ApplicationInsights",
- "ModuleVersion": "2.2.0",
+ "ModuleVersion": "2.2.1",
"Cmdlets": [
{
"VerbName": "Get",
@@ -16,7 +16,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkScopedResource": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[]",
"ApplicationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType]",
@@ -55,7 +55,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.PSApplicationInsightsComponentWithPricingPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.PSApplicationInsightsComponentWithPricingPlan, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.PSApplicationInsightsComponentWithPricingPlan, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StopSendNotificationWhenHitCap": "System.Boolean",
"IsCapped": "System.Boolean",
@@ -183,7 +183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -242,7 +242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -252,7 +252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -399,7 +399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -415,7 +415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -546,7 +546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -562,7 +562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -678,7 +678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -694,7 +694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -829,7 +829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -845,7 +845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -911,7 +911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -974,7 +974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -990,7 +990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1090,7 +1090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1106,7 +1106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1179,7 +1179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApiKey": "System.String",
"CreatedDate": "System.String",
@@ -1241,7 +1241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -1286,7 +1286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1296,7 +1296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1438,7 +1438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1454,7 +1454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1604,7 +1604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1620,7 +1620,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1686,7 +1686,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -1749,7 +1749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1765,7 +1765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1865,7 +1865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1881,7 +1881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -1954,7 +1954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationName": "System.String",
"ResourceGroup": "System.String",
@@ -2029,7 +2029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -2074,7 +2074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2084,7 +2084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2226,7 +2226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2242,7 +2242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2392,7 +2392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2408,7 +2408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2474,7 +2474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -2537,7 +2537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2553,7 +2553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2653,7 +2653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2669,7 +2669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2742,7 +2742,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkedStorageAccount": "System.String"
}
@@ -2790,7 +2790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -2835,7 +2835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2845,7 +2845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2972,7 +2972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -2988,7 +2988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3054,7 +3054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -3117,7 +3117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3133,7 +3133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3233,7 +3233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3249,7 +3249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3322,7 +3322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -3381,7 +3381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -3440,7 +3440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3450,7 +3450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3573,7 +3573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3589,7 +3589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3670,7 +3670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -3781,7 +3781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3797,7 +3797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3913,7 +3913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3929,7 +3929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -3995,7 +3995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -4091,7 +4091,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4107,7 +4107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4180,7 +4180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestHeader": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]",
"PropertiesLocations": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
@@ -4251,7 +4251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -4305,7 +4305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4315,7 +4315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4441,7 +4441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4457,7 +4457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4603,7 +4603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4619,7 +4619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4750,7 +4750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4766,7 +4766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4882,7 +4882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4898,7 +4898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -4964,7 +4964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -5027,7 +5027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5043,7 +5043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5143,7 +5143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5159,7 +5159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5232,7 +5232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -5292,7 +5292,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -5324,7 +5324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5374,7 +5374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5384,7 +5384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5522,7 +5522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5538,7 +5538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5635,7 +5635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5730,7 +5730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5746,7 +5746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5828,7 +5828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CategoryType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -5908,7 +5908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5924,7 +5924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -5990,7 +5990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -6068,7 +6068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6084,7 +6084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6199,7 +6199,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6215,7 +6215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6288,7 +6288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -6357,7 +6357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -6402,7 +6402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6412,7 +6412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6535,7 +6535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6551,7 +6551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6712,7 +6712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6728,7 +6728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6794,7 +6794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -6857,7 +6857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6873,7 +6873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6973,7 +6973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -6989,7 +6989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7062,7 +7062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Gallery": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
"Localized": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized",
@@ -7110,7 +7110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -7155,7 +7155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7165,7 +7165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7288,7 +7288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7304,7 +7304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7370,7 +7370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -7433,7 +7433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7449,7 +7449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7549,7 +7549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7565,7 +7565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7638,7 +7638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkScopedResource": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[]",
"ApplicationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType]",
@@ -7732,7 +7732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7768,7 +7768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7804,7 +7804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7813,7 +7813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7822,7 +7822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7831,7 +7831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7901,7 +7901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -7911,7 +7911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8036,7 +8036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8096,7 +8096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8156,7 +8156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8171,7 +8171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8186,7 +8186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8201,7 +8201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -8313,7 +8313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8329,7 +8329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8402,7 +8402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApiKey": "System.String",
"CreatedDate": "System.String",
@@ -8495,7 +8495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8505,7 +8505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8662,7 +8662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8678,7 +8678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8751,7 +8751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationName": "System.String",
"ResourceGroup": "System.String",
@@ -8902,7 +8902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -8912,7 +8912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9144,7 +9144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9160,7 +9160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9233,7 +9233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkedStorageAccount": "System.String"
}
@@ -9311,7 +9311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9321,7 +9321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9462,7 +9462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9478,7 +9478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9551,7 +9551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -9758,7 +9758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -9768,7 +9768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10101,7 +10101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10117,7 +10117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10190,7 +10190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestHeader": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]",
"PropertiesLocations": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
@@ -10323,7 +10323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation"
},
"ValidateNotNullOrEmpty": false
@@ -10333,7 +10333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -10360,7 +10360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField"
},
"ValidateNotNullOrEmpty": false
@@ -10500,7 +10500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10510,7 +10510,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10676,7 +10676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation"
},
"ValidateNotNullOrEmpty": false
@@ -10692,7 +10692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -10846,7 +10846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10862,7 +10862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -10988,7 +10988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField"
},
"ValidateNotNullOrEmpty": false
@@ -11187,7 +11187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation"
},
"ValidateNotNullOrEmpty": false
@@ -11203,7 +11203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11357,7 +11357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -11373,7 +11373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -11577,7 +11577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation"
},
"ValidateNotNullOrEmpty": false
@@ -11593,7 +11593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -11747,7 +11747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -11763,7 +11763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -11836,7 +11836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.WebTestGeolocation",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.WebTestGeolocation, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.WebTestGeolocation, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Location": "System.String"
},
@@ -11981,7 +11981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.HeaderField",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.HeaderField, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.HeaderField, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -12151,7 +12151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -12264,7 +12264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ManagedServiceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ManagedServiceIdentityType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ManagedServiceIdentityType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12359,7 +12359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -12369,7 +12369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -12547,7 +12547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ManagedServiceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ManagedServiceIdentityType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ManagedServiceIdentityType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12702,7 +12702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -12718,7 +12718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -12791,7 +12791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Gallery": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
"Localized": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized",
@@ -12856,7 +12856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"ValidateNotNullOrEmpty": false
@@ -12924,7 +12924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -12934,7 +12934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13052,7 +13052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"ValidateNotNullOrEmpty": false
@@ -13162,7 +13162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13178,7 +13178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13251,7 +13251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.WorkbookTemplateGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.WorkbookTemplateGallery, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.WorkbookTemplateGallery, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Order": "System.Nullable`1[System.Int32]",
"Category": "System.String",
@@ -13540,7 +13540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -13585,7 +13585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13595,7 +13595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13730,7 +13730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13746,7 +13746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13827,7 +13827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -13890,7 +13890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -13906,7 +13906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14021,7 +14021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14037,7 +14037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14125,7 +14125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentApiKey, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApiKey": "System.String",
"CreatedDate": "System.String",
@@ -14186,7 +14186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -14231,7 +14231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14241,7 +14241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14382,7 +14382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14398,7 +14398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14464,7 +14464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -14527,7 +14527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14543,7 +14543,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14643,7 +14643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14659,7 +14659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14732,7 +14732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationName": "System.String",
"ResourceGroup": "System.String",
@@ -14806,7 +14806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -14851,7 +14851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -14861,7 +14861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15002,7 +15002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15018,7 +15018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15084,7 +15084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -15147,7 +15147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15163,7 +15163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15263,7 +15263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15279,7 +15279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15396,7 +15396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -15441,7 +15441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15451,7 +15451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15586,7 +15586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15602,7 +15602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15683,7 +15683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -15746,7 +15746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15762,7 +15762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15877,7 +15877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -15893,7 +15893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16043,7 +16043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16053,7 +16053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16184,7 +16184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16200,7 +16200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16331,7 +16331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -16376,7 +16376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16386,7 +16386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16520,7 +16520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16536,7 +16536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16617,7 +16617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -16680,7 +16680,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16696,7 +16696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16811,7 +16811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16827,7 +16827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -16955,7 +16955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -17000,7 +17000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17010,7 +17010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17141,7 +17141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17157,7 +17157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17238,7 +17238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -17301,7 +17301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17317,7 +17317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17432,7 +17432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17448,7 +17448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17576,7 +17576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -17621,7 +17621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17631,7 +17631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17762,7 +17762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17778,7 +17778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17859,7 +17859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -17922,7 +17922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -17938,7 +17938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18053,7 +18053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18069,7 +18069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18157,7 +18157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentExportConfiguration, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationName": "System.String",
"ResourceGroup": "System.String",
@@ -18326,7 +18326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18336,7 +18336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18598,7 +18598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18614,7 +18614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18687,7 +18687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentBillingFeatures",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentBillingFeatures, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentBillingFeatures, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataVolumeCapStopSendNotificationWhenHitCap": "System.Nullable`1[System.Boolean]",
"DataVolumeCapStopSendNotificationWhenHitThreshold": "System.Nullable`1[System.Boolean]",
@@ -18780,7 +18780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18790,7 +18790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18946,7 +18946,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -18962,7 +18962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19035,7 +19035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentBillingFeatures",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentBillingFeatures, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20150501.IApplicationInsightsComponentBillingFeatures, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataVolumeCapStopSendNotificationWhenHitCap": "System.Nullable`1[System.Boolean]",
"DataVolumeCapStopSendNotificationWhenHitThreshold": "System.Nullable`1[System.Boolean]",
@@ -19137,7 +19137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19147,7 +19147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19318,7 +19318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19334,7 +19334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19407,7 +19407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IApplicationInsightsComponent, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkScopedResource": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[]",
"ApplicationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType]",
@@ -19480,7 +19480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19516,7 +19516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19552,7 +19552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19561,7 +19561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19570,7 +19570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19579,7 +19579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19649,7 +19649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19659,7 +19659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -19751,7 +19751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19811,7 +19811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19871,7 +19871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19886,7 +19886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19901,7 +19901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19916,7 +19916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -20028,7 +20028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20044,7 +20044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20117,7 +20117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20200301Preview.IComponentLinkedStorageAccounts, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkedStorageAccount": "System.String"
}
@@ -20164,7 +20164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -20218,7 +20218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20228,7 +20228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20369,7 +20369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20385,7 +20385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20451,7 +20451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -20529,7 +20529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20545,7 +20545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20660,7 +20660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20676,7 +20676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20749,7 +20749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -20816,7 +20816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -20865,7 +20865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20875,7 +20875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -20978,7 +20978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20210308.IMyWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -21045,7 +21045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21061,7 +21061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21134,7 +21134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTest, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestHeader": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]",
"PropertiesLocations": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
@@ -21201,7 +21201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -21255,7 +21255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21265,7 +21265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21402,7 +21402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21418,7 +21418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21484,7 +21484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -21562,7 +21562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21578,7 +21578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21693,7 +21693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21709,7 +21709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21782,7 +21782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220401.IWorkbook, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
"SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
@@ -21841,7 +21841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -21959,7 +21959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21969,7 +21969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22212,7 +22212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22228,7 +22228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22294,7 +22294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -22478,7 +22478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22494,7 +22494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22715,7 +22715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22731,7 +22731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22804,7 +22804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplate, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Gallery": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
"Localized": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized",
@@ -22851,7 +22851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -22883,7 +22883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"ValidateNotNullOrEmpty": false
@@ -22951,7 +22951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -22961,7 +22961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23064,7 +23064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"ValidateNotNullOrEmpty": false
@@ -23174,7 +23174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23190,7 +23190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23256,7 +23256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.IApplicationInsightsIdentity, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
"AnnotationId": "System.String",
@@ -23300,7 +23300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"ValidateNotNullOrEmpty": false
@@ -23410,7 +23410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23426,7 +23426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23507,7 +23507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"ValidateNotNullOrEmpty": false
@@ -23617,7 +23617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23633,7 +23633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -23739,13 +23739,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource"
},
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String",
"ScopeId": "System.String"
@@ -23754,7 +23754,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType"
]
@@ -23762,7 +23762,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.ApplicationType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -23845,7 +23845,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType"
]
@@ -23853,7 +23853,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.FlowType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -23918,7 +23918,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode"
]
@@ -23926,7 +23926,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.IngestionMode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -23991,7 +23991,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType"
]
@@ -23999,7 +23999,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.PublicNetworkAccessType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24064,7 +24064,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource"
]
@@ -24072,7 +24072,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.RequestSource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24183,7 +24183,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource, Az.ApplicationInsights.private, Version=2.1.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.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api202002.IPrivateLinkScopedResource"
]
@@ -24191,7 +24191,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType"
]
@@ -24199,7 +24199,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.StorageType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24264,7 +24264,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.SendAsyncStep, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Target": "System.Object",
"Method": "System.Reflection.MethodInfo"
@@ -24448,7 +24448,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType"
]
@@ -24456,7 +24456,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.CreatedByType, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24521,7 +24521,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind"
]
@@ -24529,7 +24529,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.Kind, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24594,13 +24594,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField"
},
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IHeaderField, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -24609,13 +24609,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation"
},
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20220615.IWebTestGeolocation, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Location": "System.String"
}
@@ -24623,7 +24623,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind"
]
@@ -24631,7 +24631,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKind, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24696,7 +24696,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum"
]
@@ -24704,7 +24704,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Support.WebTestKindEnum, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -24769,13 +24769,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery[], Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery"
},
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplateGallery, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Order": "System.Nullable`1[System.Int32]",
"Category": "System.String",
@@ -24787,17 +24787,17 @@
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesLocalized, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesTemplateData": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesTemplateData",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesTemplateData, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Models.Api20201120.IWorkbookTemplatePropertiesTemplateData, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.Json.JsonNode": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.Json",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.Json.JsonNode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.Json.JsonNode, Az.ApplicationInsights.private, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.Json.JsonNode, Az.ApplicationInsights.private, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Item": "Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.Runtime.Json.JsonNode"
},
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Automation.json b/tools/Tools.Common/SerializedCmdlets/Az.Automation.json
index 6c3572bc9da3..34885bfec589 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Automation.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Automation.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Automation",
- "ModuleVersion": "1.8.0",
+ "ModuleVersion": "1.9.0",
"Cmdlets": [
{
"VerbName": "Export",
@@ -914,7 +914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties",
"Identity": "Microsoft.Azure.Management.Automation.Models.Identity",
@@ -1179,7 +1179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exportable": "System.Boolean",
"ExpiryTime": "System.DateTimeOffset",
@@ -1446,7 +1446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Connection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FieldDefinitionValues": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -1797,7 +1797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"LastModifiedTime": "System.DateTimeOffset",
@@ -2062,7 +2062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobParameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -2668,7 +2668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.JobStream",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Time": "System.DateTimeOffset",
"JobId": "System.Guid",
@@ -2752,7 +2752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Warning",
@@ -2841,7 +2841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Warning",
@@ -2948,7 +2948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"Tags": "System.Collections.Hashtable",
@@ -3223,7 +3223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RegistrationTime": "System.DateTimeOffset",
"LastSeen": "System.DateTimeOffset",
@@ -3305,7 +3305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Compliant",
@@ -3475,7 +3475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Compliant",
@@ -3577,7 +3577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Compliant",
@@ -3676,7 +3676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Compliant",
@@ -3904,7 +3904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobParameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -4378,7 +4378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Job": "Microsoft.Azure.Commands.Automation.Model.Job",
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
@@ -4941,7 +4941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
"JobScheduleId": "System.Guid",
@@ -5204,7 +5204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RegistrationTime": "System.DateTimeOffset",
"LastSeen": "System.DateTimeOffset",
@@ -5737,7 +5737,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"AutomationAccountName": "System.String",
@@ -5987,7 +5987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Management.Automation.Models.SystemData",
"RegisteredDateTime": "System.DateTimeOffset",
@@ -6342,7 +6342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credential": "Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty",
"SystemData": "Microsoft.Azure.Management.Automation.Models.SystemData",
@@ -6626,7 +6626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RunbookWorker": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]",
"ResourceGroupName": "System.String",
@@ -6895,7 +6895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Job",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobParameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -7517,7 +7517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.JobStream",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Time": "System.DateTimeOffset",
"JobId": "System.Guid",
@@ -7601,7 +7601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.StreamType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7684,7 +7684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.StreamType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -7785,7 +7785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Hashtable",
"Time": "System.DateTimeOffset",
@@ -8024,7 +8024,275 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Module",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IsGlobal": "System.Boolean",
+ "CreationTime": "System.DateTimeOffset",
+ "LastModifiedTime": "System.DateTimeOffset",
+ "ActivityCount": "System.Int32",
+ "SizeInBytes": "System.Int64",
+ "ResourceGroupName": "System.String",
+ "AutomationAccountName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "ProvisioningState": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "automationAccountName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "module",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzAutomationPython3Package",
+ "Name": "Get-AzAutomationPython3Package",
+ "ClassName": "Microsoft.Azure.Commands.Automation.Cmdlet.GetAzureAutomationPython3Package",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByAll",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Automation.Model",
+ "Name": "Microsoft.Azure.Commands.Automation.Model.Module",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsGlobal": "System.Boolean",
"CreationTime": "System.DateTimeOffset",
@@ -8292,7 +8560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"AutomationAccountName": "System.String",
@@ -8470,7 +8738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Runbook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"LogProgress": "System.Boolean",
@@ -8749,7 +9017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -9032,7 +9300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -9574,7 +9842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule",
"ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
@@ -9906,7 +10174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetComputerType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType",
"OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType",
@@ -9975,7 +10243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType",
"Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus",
@@ -10002,7 +10270,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus"
]
@@ -10158,7 +10426,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus"
]
@@ -10252,7 +10520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType",
"Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus",
@@ -10285,7 +10553,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus"
]
@@ -10379,7 +10647,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus"
]
@@ -10541,7 +10809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType",
"Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus",
@@ -10634,7 +10902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule",
"ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
@@ -10656,7 +10924,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType"
]
@@ -10668,7 +10936,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus"
]
@@ -10824,7 +11092,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType"
]
@@ -10842,7 +11110,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus"
]
@@ -10936,7 +11204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule",
"ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
@@ -10964,7 +11232,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType"
]
@@ -10982,7 +11250,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus"
]
@@ -11076,7 +11344,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType"
]
@@ -11094,7 +11362,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus"
]
@@ -11256,7 +11524,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoSync": "System.Boolean",
"PublishRunbook": "System.Boolean",
@@ -11621,7 +11889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"SourceControlSyncJobId": "System.Guid",
@@ -11692,7 +11960,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"SourceControlSyncJobId": "System.Guid",
@@ -11939,7 +12207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceControlSyncJobId": "System.Guid",
"Time": "System.Nullable`1[System.DateTimeOffset]",
@@ -12013,7 +12281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Hashtable",
"SourceControlSyncJobId": "System.Guid",
@@ -12116,7 +12384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12217,7 +12485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Common",
"Name": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -12318,7 +12586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Variable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encrypted": "System.Boolean",
"CreationTime": "System.DateTimeOffset",
@@ -12584,7 +12852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Webhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -12947,7 +13215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"Tags": "System.Collections.Hashtable",
@@ -13293,7 +13561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"LastModifiedTime": "System.DateTimeOffset",
@@ -13573,7 +13841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Runbook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"LogProgress": "System.Boolean",
@@ -14025,7 +14293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Management.Automation.Models.SystemData",
"RegisteredDateTime": "System.DateTimeOffset",
@@ -14332,7 +14600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties",
"Identity": "Microsoft.Azure.Management.Automation.Models.Identity",
@@ -15148,7 +15416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exportable": "System.Boolean",
"ExpiryTime": "System.DateTimeOffset",
@@ -15526,7 +15794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Connection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FieldDefinitionValues": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -15864,7 +16132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"LastModifiedTime": "System.DateTimeOffset",
@@ -16177,7 +16445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorker, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Management.Automation.Models.SystemData",
"RegisteredDateTime": "System.DateTimeOffset",
@@ -16482,7 +16750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credential": "Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty",
"SystemData": "Microsoft.Azure.Management.Automation.Models.SystemData",
@@ -16729,7 +16997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"AutomationAccountName": "System.String",
@@ -16939,7 +17207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Module",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsGlobal": "System.Boolean",
"CreationTime": "System.DateTimeOffset",
@@ -17165,6 +17433,243 @@
"Import-AzAutomationModule"
]
},
+ {
+ "VerbName": "New",
+ "NounName": "AzAutomationPython3Package",
+ "Name": "New-AzAutomationPython3Package",
+ "ClassName": "Microsoft.Azure.Commands.Automation.Cmdlet.NewAzureAutomationPython3Package",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Automation.Model",
+ "Name": "Microsoft.Azure.Commands.Automation.Model.Module",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IsGlobal": "System.Boolean",
+ "CreationTime": "System.DateTimeOffset",
+ "LastModifiedTime": "System.DateTimeOffset",
+ "ActivityCount": "System.Int32",
+ "SizeInBytes": "System.Int64",
+ "ResourceGroupName": "System.String",
+ "AutomationAccountName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "ProvisioningState": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "automationAccountName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "module",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ContentLinkUri",
+ "AliasList": [
+ "ContentLink"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContentLinkUri",
+ "AliasList": [
+ "ContentLink"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
{
"VerbName": "New",
"NounName": "AzAutomationRunbook",
@@ -17179,7 +17684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Runbook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"LogProgress": "System.Boolean",
@@ -17707,7 +18212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -17824,7 +18329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet",
"Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth"
},
"ValidateNotNullOrEmpty": false
@@ -17846,7 +18351,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet",
"Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -18299,7 +18804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet",
"Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth"
},
"ValidateNotNullOrEmpty": false
@@ -18501,7 +19006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet",
"Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19178,7 +19683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule",
"ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
@@ -19228,7 +19733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -19337,7 +19842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -19347,7 +19852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -19366,7 +19871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19375,7 +19880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses"
},
"ValidateNotNullOrEmpty": false
@@ -19405,7 +19910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses"
},
"ValidateNotNullOrEmpty": false
@@ -19479,7 +19984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -19618,7 +20123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -19634,7 +20139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -19665,7 +20170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -19756,7 +20261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses"
},
"ValidateNotNullOrEmpty": false
@@ -19804,7 +20309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -19943,7 +20448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -19959,7 +20464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -19990,7 +20495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -20081,7 +20586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses"
},
"ValidateNotNullOrEmpty": false
@@ -20129,7 +20634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -20268,7 +20773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -20284,7 +20789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties"
},
"ValidateNotNullOrEmpty": false
@@ -20315,7 +20820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -20398,7 +20903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoSync": "System.Boolean",
"PublishRunbook": "System.Boolean",
@@ -20809,7 +21314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TagSettings": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings",
"Locations": "System.String[]",
@@ -20888,7 +21393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -20991,7 +21496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -21074,7 +21579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Variable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encrypted": "System.Boolean",
"CreationTime": "System.DateTimeOffset",
@@ -21412,7 +21917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Webhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -21773,7 +22278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Runbook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"LogProgress": "System.Boolean",
@@ -22443,7 +22948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -22793,7 +23298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties",
"Identity": "Microsoft.Azure.Management.Automation.Models.Identity",
@@ -25059,19 +25564,77 @@
},
{
"VerbName": "Remove",
- "NounName": "AzAutomationRunbook",
- "Name": "Remove-AzAutomationRunbook",
- "ClassName": "Microsoft.Azure.Commands.Automation.Cmdlet.RemoveAzureAutomationRunbook",
+ "NounName": "AzAutomationPython3Package",
+ "Name": "Remove-AzAutomationPython3Package",
+ "ClassName": "Microsoft.Azure.Commands.Automation.Cmdlet.RemoveAzureAutomationPython3Package",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByRunbookName",
+ "DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Commands.Automation.Model",
+ "Name": "Microsoft.Azure.Commands.Automation.Model.Module",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IsGlobal": "System.Boolean",
+ "CreationTime": "System.DateTimeOffset",
+ "LastModifiedTime": "System.DateTimeOffset",
+ "ActivityCount": "System.Int32",
+ "SizeInBytes": "System.Int64",
+ "ResourceGroupName": "System.String",
+ "AutomationAccountName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "ProvisioningState": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "automationAccountName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "module",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
+ {
+ "Name": ""
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -25081,9 +25644,243 @@
"Parameters": [
{
"Name": "Name",
- "AliasList": [
- "RunbookName"
- ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Force",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzAutomationRunbook",
+ "Name": "Remove-AzAutomationRunbook",
+ "ClassName": "Microsoft.Azure.Commands.Automation.Cmdlet.RemoveAzureAutomationRunbook",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByRunbookName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "RunbookName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -25607,7 +26404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule",
"ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
@@ -25773,7 +26570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule",
"ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
@@ -26596,7 +27393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties",
"Identity": "Microsoft.Azure.Management.Automation.Models.Identity",
@@ -27358,7 +28155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exportable": "System.Boolean",
"ExpiryTime": "System.DateTimeOffset",
@@ -27745,7 +28542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Connection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FieldDefinitionValues": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -28059,7 +28856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"LastModifiedTime": "System.DateTimeOffset",
@@ -28372,7 +29169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RegistrationTime": "System.DateTimeOffset",
"LastSeen": "System.DateTimeOffset",
@@ -28723,7 +29520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Credential": "Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty",
"SystemData": "Microsoft.Azure.Management.Automation.Models.SystemData",
@@ -28970,7 +29767,362 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Module",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "IsGlobal": "System.Boolean",
+ "CreationTime": "System.DateTimeOffset",
+ "LastModifiedTime": "System.DateTimeOffset",
+ "ActivityCount": "System.Int32",
+ "SizeInBytes": "System.Int64",
+ "ResourceGroupName": "System.String",
+ "AutomationAccountName": "System.String",
+ "Name": "System.String",
+ "Version": "System.String",
+ "ProvisioningState": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "resourceGroupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "automationAccountName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "module",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ContentLinkUri",
+ "AliasList": [
+ "ContentLink"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ContentLinkVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContentLinkUri",
+ "AliasList": [
+ "ContentLink"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContentLinkVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ContentLinkUri",
+ "AliasList": [
+ "ContentLink"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ContentLinkVersion",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AutomationAccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzAutomationPython3Package",
+ "Name": "Set-AzAutomationPython3Package",
+ "ClassName": "Microsoft.Azure.Commands.Automation.Cmdlet.SetAzureAutomationPython3Package",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Automation.Model",
+ "Name": "Microsoft.Azure.Commands.Automation.Model.Module",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsGlobal": "System.Boolean",
"CreationTime": "System.DateTimeOffset",
@@ -29325,7 +30477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Runbook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LogVerbose": "System.Boolean",
"LogProgress": "System.Boolean",
@@ -29778,7 +30930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -30142,7 +31294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Variable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encrypted": "System.Boolean",
"CreationTime": "System.DateTimeOffset",
@@ -30556,7 +31708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Webhook",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -30851,7 +32003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobParameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -31139,7 +32291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Job": "Microsoft.Azure.Commands.Automation.Model.Job",
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
@@ -31356,7 +32508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -31391,7 +32543,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Job": "Microsoft.Azure.Commands.Automation.Model.Job",
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
@@ -31489,7 +32641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -31631,7 +32783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Job": "Microsoft.Azure.Commands.Automation.Model.Job",
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
@@ -31786,7 +32938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Job",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobParameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -32315,7 +33467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreationTime": "System.DateTimeOffset",
"SourceControlSyncJobId": "System.Guid",
@@ -32601,7 +33753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Job": "Microsoft.Azure.Commands.Automation.Model.Job",
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
@@ -32847,7 +33999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Job": "Microsoft.Azure.Commands.Automation.Model.Job",
"JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
@@ -33266,7 +34418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DscNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RegistrationTime": "System.DateTimeOffset",
"LastSeen": "System.DateTimeOffset",
@@ -33963,7 +35115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoSync": "System.Boolean",
"PublishRunbook": "System.Boolean",
@@ -34499,7 +35651,7 @@
"Microsoft.Azure.Management.Automation.Models.EncryptionProperties": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.EncryptionProperties, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Automation.Models.EncryptionPropertiesIdentity",
"KeyVaultProperties": "Microsoft.Azure.Management.Automation.Models.KeyVaultProperties",
@@ -34555,7 +35707,7 @@
"Microsoft.Azure.Management.Automation.Models.EncryptionPropertiesIdentity": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.EncryptionPropertiesIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.EncryptionPropertiesIdentity, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.EncryptionPropertiesIdentity, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentity": "System.Object"
},
@@ -34611,7 +35763,7 @@
"Microsoft.Azure.Management.Automation.Models.KeyVaultProperties": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.KeyVaultProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.KeyVaultProperties, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.KeyVaultProperties, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyvaultUri": "System.String",
"KeyName": "System.String",
@@ -34667,7 +35819,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType"
]
@@ -34675,7 +35827,7 @@
"Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.EncryptionKeySourceType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34767,7 +35919,7 @@
"Microsoft.Azure.Management.Automation.Models.Identity": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.Identity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.Identity, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.Identity, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Automation.Models.ResourceIdentityType]",
@@ -34828,7 +35980,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.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.Management.Automation.Models.IdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue"
@@ -34837,7 +35989,7 @@
"Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.IdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -34888,7 +36040,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Automation.Models.ResourceIdentityType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Automation.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Automation.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Automation.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Automation.Models.ResourceIdentityType"
]
@@ -34896,7 +36048,7 @@
"Microsoft.Azure.Management.Automation.Models.ResourceIdentityType": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.ResourceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.ResourceIdentityType, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35014,7 +36166,7 @@
"Microsoft.Azure.Commands.Automation.Model.Job": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Job",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobParameters": "System.Collections.Hashtable",
"CreationTime": "System.DateTimeOffset",
@@ -35099,7 +36251,7 @@
"Microsoft.Azure.Commands.Automation.Model.JobSchedule": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Parameters": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -35168,7 +36320,7 @@
"Microsoft.Azure.Management.Automation.Models.SystemData": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.SystemData",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SystemData, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SystemData, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedAt": "System.Nullable`1[System.DateTimeOffset]",
"LastModifiedAt": "System.Nullable`1[System.DateTimeOffset]",
@@ -35239,7 +36391,7 @@
"Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.RunAsCredentialAssociationProperty, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -35285,7 +36437,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker"
]
@@ -35293,7 +36445,7 @@
"Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RegistrationTime": "System.DateTimeOffset",
"LastSeenDateTime": "System.DateTimeOffset",
@@ -35342,7 +36494,7 @@
"Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DayOfWeek": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek",
"DaysOfMonth": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]"
@@ -35380,7 +36532,7 @@
"Microsoft.Azure.Commands.Automation.Model.DayOfWeek": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Occurrence": "System.String",
"Day": "System.String"
@@ -35418,7 +36570,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth"
]
@@ -35426,7 +36578,7 @@
"Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth": {
"Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet",
"Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35513,7 +36665,7 @@
"Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35600,7 +36752,7 @@
"Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DaysOfWeek": "System.Collections.Generic.IList`1[System.String]"
},
@@ -35645,7 +36797,7 @@
"Microsoft.Azure.Management.Automation.Models.AdvancedSchedule": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.AdvancedSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.AdvancedSchedule, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.AdvancedSchedule, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyOccurrences": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence]",
"MonthDays": "System.Collections.Generic.IList`1[System.Int32]",
@@ -35701,7 +36853,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence"
]
@@ -35709,7 +36861,7 @@
"Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence, Microsoft.Azure.PowerShell.Automation.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Occurrence": "System.Nullable`1[System.Int32]",
"Day": "System.String"
@@ -35776,7 +36928,7 @@
"Microsoft.Azure.Commands.Automation.Model.Schedule": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model",
"Name": "Microsoft.Azure.Commands.Automation.Model.Schedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions",
"Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency",
@@ -35848,7 +37000,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String",
"Message": "System.String"
@@ -35886,7 +37038,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PreTask": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task",
"PostTask": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task"
@@ -35924,7 +37076,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"source": "System.String"
@@ -35962,7 +37114,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Linux": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration",
"OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType",
@@ -36005,7 +37157,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"rebootSetting": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
"IncludedPackageClassifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]",
@@ -36045,7 +37197,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36132,7 +37284,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses"
]
@@ -36140,7 +37292,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36227,7 +37379,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36314,7 +37466,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureQueries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]",
"NonAzureQueries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]"
@@ -36352,7 +37504,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties"
]
@@ -36360,7 +37512,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TagSettings": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings",
"Locations": "System.String[]",
@@ -36399,7 +37551,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FilterOperator": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.List`1[System.String]]"
@@ -36437,7 +37589,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36547,7 +37699,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties"
]
@@ -36555,7 +37707,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FunctionAlias": "System.String",
"WorkspaceResourceId": "System.String"
@@ -36593,7 +37745,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"rebootSetting": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting",
"IncludedUpdateClassifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]",
@@ -36633,7 +37785,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses"
]
@@ -36641,7 +37793,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36741,7 +37893,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36828,7 +37980,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36915,7 +38067,7 @@
"Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus": {
"Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement",
"Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37002,7 +38154,7 @@
"Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PreTask": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties",
"PostTask": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties"
@@ -37053,7 +38205,7 @@
"Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties": {
"Namespace": "Microsoft.Azure.Management.Automation.Models",
"Name": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Automation.Models.SoftareUpdateConfigurationRunTaskProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.String",
"Source": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Batch.json b/tools/Tools.Common/SerializedCmdlets/Az.Batch.json
index a2926eb30db8..f570a97dc40e 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Batch.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Batch.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Batch",
- "ModuleVersion": "3.2.1",
+ "ModuleVersion": "3.3.0",
"Cmdlets": [
{
"VerbName": "Disable",
@@ -38,7 +38,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -115,7 +115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -226,7 +226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -260,7 +260,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption"
]
@@ -272,7 +272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -364,7 +364,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption"
]
@@ -382,7 +382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -455,7 +455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -495,7 +495,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption"
]
@@ -513,7 +513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -586,7 +586,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption"
]
@@ -604,7 +604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -706,7 +706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DisableJobOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DisableJobOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DisableJobOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -715,7 +715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -792,7 +792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DisableJobOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DisableJobOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DisableJobOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -807,7 +807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -909,7 +909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -986,7 +986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1109,7 +1109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1219,7 +1219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1330,7 +1330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -1364,7 +1364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1456,7 +1456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1529,7 +1529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -1569,7 +1569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1642,7 +1642,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1744,7 +1744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1821,7 +1821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -1923,7 +1923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2000,7 +2000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2111,7 +2111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -2149,7 +2149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2241,7 +2241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2314,7 +2314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -2358,7 +2358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2431,7 +2431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2514,7 +2514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2731,7 +2731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -2927,7 +2927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowUpdates": "System.Boolean",
"Id": "System.String",
@@ -3118,7 +3118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackage, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackage, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Management.Batch.Models.PackageState",
"LastActivationTime": "System.Nullable`1[System.DateTime]",
@@ -3335,7 +3335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DeleteCertificateError": "Microsoft.Azure.Commands.Batch.Models.PSDeleteCertificateError",
"CertificateFormat": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateFormat]",
@@ -3431,7 +3431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -3538,7 +3538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -3656,7 +3656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -3744,7 +3744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -3824,7 +3824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -3904,7 +3904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -3922,9 +3922,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -3979,7 +3981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4086,7 +4088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4219,7 +4221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4292,7 +4294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -4310,9 +4312,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -4391,7 +4395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4479,7 +4483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4559,7 +4563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeVMExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeVMExtension, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeVMExtension, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmExtension": "Microsoft.Azure.Commands.Batch.Models.PSVMExtension",
"InstanceView": "Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView",
@@ -4615,7 +4619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -4633,9 +4637,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -4699,7 +4705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4836,7 +4842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -4909,7 +4915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -4927,9 +4933,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -5023,7 +5031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5096,7 +5104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5176,7 +5184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -5259,7 +5267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation",
"Statistics": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics",
@@ -5321,7 +5329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5428,7 +5436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5576,7 +5584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5649,7 +5657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation",
"Statistics": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics",
@@ -5741,7 +5749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5844,7 +5852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -5924,7 +5932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationAndReleaseTaskExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationAndReleaseTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationAndReleaseTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"JobPreparationTaskExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTaskExecutionInformation",
"JobReleaseTaskExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTaskExecutionInformation",
@@ -5977,7 +5985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -6050,7 +6058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -6187,7 +6195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -6260,7 +6268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -6363,7 +6371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -6496,7 +6504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -6576,7 +6584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation",
"Statistics": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics",
@@ -6675,7 +6683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -6782,7 +6790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -6915,7 +6923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7018,7 +7026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7098,7 +7106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -7151,7 +7159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7213,7 +7221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7296,7 +7304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSBatchLocationQuotas",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSBatchLocationQuotas, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSBatchLocationQuotas, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountQuota": "System.Int32",
"Location": "System.String"
@@ -7444,7 +7452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
"IsDirectory": "System.Nullable`1[System.Boolean]",
@@ -7505,7 +7513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -7561,7 +7569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -7634,7 +7642,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7744,7 +7752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7892,7 +7900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -7965,7 +7973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -8054,7 +8062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -8175,7 +8183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -8323,7 +8331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -8396,7 +8404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -8481,7 +8489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -8554,7 +8562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -8695,7 +8703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
"IsDirectory": "System.Nullable`1[System.Boolean]",
@@ -8756,7 +8764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -8921,7 +8929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9097,7 +9105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9273,7 +9281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9449,7 +9457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9522,7 +9530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
"IsDirectory": "System.Nullable`1[System.Boolean]",
@@ -9598,7 +9606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9671,7 +9679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
"IsDirectory": "System.Nullable`1[System.Boolean]",
@@ -9747,7 +9755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9860,7 +9868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -9940,7 +9948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -9958,9 +9966,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -10061,7 +10071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10168,7 +10178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10301,7 +10311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10404,7 +10414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10484,7 +10494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolNodeCounts",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolNodeCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolNodeCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Dedicated": "Microsoft.Azure.Commands.Batch.Models.PSNodeCounts",
"LowPriority": "Microsoft.Azure.Commands.Batch.Models.PSNodeCounts",
@@ -10535,7 +10545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -10553,9 +10563,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -10594,7 +10606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10671,7 +10683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10744,7 +10756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -10762,9 +10774,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -10798,7 +10812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10888,7 +10902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -10961,7 +10975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11044,7 +11058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceStatistics": "Microsoft.Azure.Commands.Batch.Models.PSResourceStatistics",
"UsageStatistics": "Microsoft.Azure.Commands.Batch.Models.PSUsageStatistics",
@@ -11088,7 +11102,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11150,7 +11164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11233,7 +11247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolUsageMetrics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolUsageMetrics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolUsageMetrics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -11310,7 +11324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11423,7 +11437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11537,7 +11551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -11589,7 +11603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11696,7 +11710,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11814,7 +11828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -11887,7 +11901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -11942,7 +11956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12015,7 +12029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -12070,7 +12084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12143,7 +12157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12223,7 +12237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSRemoteLoginSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSRemoteLoginSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSRemoteLoginSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"IPAddress": "System.String"
@@ -12282,7 +12296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -12316,7 +12330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12408,7 +12422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12481,7 +12495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -12521,7 +12535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12594,7 +12608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12677,7 +12691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSSubtaskInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSubtaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSubtaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeInformation": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation",
"ContainerInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation",
@@ -12746,7 +12760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -12793,7 +12807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12900,7 +12914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -12973,7 +12987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -13032,7 +13046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -13120,7 +13134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -13200,7 +13214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSImageInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSImageInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSImageInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Commands.Batch.Models.PSImageReference",
"Capabilities": "System.Collections.Generic.IReadOnlyList`1[System.String]",
@@ -13263,7 +13277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -13355,7 +13369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -13435,7 +13449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSSupportedSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSupportedSku, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSupportedSku, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSSkuCapability]",
"FamilyName": "System.String",
@@ -13641,7 +13655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -13740,7 +13754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -13813,7 +13827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -13935,7 +13949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14083,7 +14097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14156,7 +14170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -14259,7 +14273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14362,7 +14376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14442,7 +14456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskCounts",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Active": "System.Int32",
"Completed": "System.Int32",
@@ -14495,7 +14509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -14532,7 +14546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14609,7 +14623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14682,7 +14696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -14725,7 +14739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14798,7 +14812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -14881,7 +14895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSlotCounts",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSlotCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSlotCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Active": "System.Int32",
"Completed": "System.Int32",
@@ -14934,7 +14948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -14971,7 +14985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -15048,7 +15062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -15121,7 +15135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -15164,7 +15178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -15237,7 +15251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -15317,7 +15331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -15431,7 +15445,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.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.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Batch.Models.PoolAllocationMode"
]
@@ -15473,7 +15487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -15482,7 +15496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -15590,7 +15604,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.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.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Batch.Models.PoolAllocationMode"
]
@@ -15656,7 +15670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -15671,7 +15685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -15740,7 +15754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -15965,7 +15979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplication, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowUpdates": "System.Boolean",
"Id": "System.String",
@@ -16210,7 +16224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackage, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackage, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Management.Batch.Models.PackageState",
"LastActivationTime": "System.Nullable`1[System.DateTime]",
@@ -16680,7 +16694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -16689,7 +16703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -16781,7 +16795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -16796,7 +16810,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -16900,7 +16914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -16915,7 +16929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -17003,7 +17017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateKind, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -17018,7 +17032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -17129,7 +17143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -17199,7 +17213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -17351,7 +17365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -17424,7 +17438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -17524,7 +17538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -17657,7 +17671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -17780,7 +17794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]"
@@ -17793,7 +17807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
@@ -17819,7 +17833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
@@ -17839,7 +17853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -17867,7 +17881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPoolSpecification": "Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification",
"PoolId": "System.String"
@@ -17898,7 +17912,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OnTaskFailure]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OnTaskFailure"
]
@@ -17910,7 +17924,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OnAllTasksComplete]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OnAllTasksComplete"
]
@@ -17922,7 +17936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -18032,7 +18046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]"
@@ -18051,7 +18065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
@@ -18083,7 +18097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
@@ -18109,7 +18123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -18149,7 +18163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPoolSpecification": "Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification",
"PoolId": "System.String"
@@ -18198,7 +18212,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OnTaskFailure]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OnTaskFailure"
]
@@ -18216,7 +18230,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OnAllTasksComplete]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OnAllTasksComplete"
]
@@ -18234,7 +18248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -18345,7 +18359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DoNotRunAfter": "System.Nullable`1[System.DateTime]",
"DoNotRunUntil": "System.Nullable`1[System.DateTime]",
@@ -18360,7 +18374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"JobManagerTask": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask",
@@ -18395,7 +18409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -18487,7 +18501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DoNotRunAfter": "System.Nullable`1[System.DateTime]",
"DoNotRunUntil": "System.Nullable`1[System.DateTime]",
@@ -18508,7 +18522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"JobManagerTask": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask",
@@ -18555,7 +18569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -18750,7 +18764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
}
@@ -18780,7 +18794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -18801,7 +18815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
},
"ValidateNotNullOrEmpty": true
@@ -18814,7 +18828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -18839,7 +18853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration",
"DiskEncryptionConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration",
@@ -18860,7 +18874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OSFamily": "System.String",
"OSVersion": "System.String"
@@ -18873,7 +18887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -18888,7 +18902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -18898,17 +18912,35 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
},
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "CurrentNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TargetNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "BatchContext",
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -19036,7 +19068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
}
@@ -19084,7 +19116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -19111,7 +19143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
},
"ValidateNotNullOrEmpty": true
@@ -19130,7 +19162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -19167,7 +19199,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -19188,7 +19220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -19204,7 +19236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
},
"ValidateNotNullOrEmpty": true
@@ -19214,13 +19246,43 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CurrentNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "BatchContext",
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -19350,7 +19412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration",
"DiskEncryptionConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration",
@@ -19443,7 +19505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
}
@@ -19491,7 +19553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -19518,7 +19580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
},
"ValidateNotNullOrEmpty": true
@@ -19537,7 +19599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -19574,7 +19636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -19595,7 +19657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -19611,7 +19673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
},
"ValidateNotNullOrEmpty": true
@@ -19621,13 +19683,43 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CurrentNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "BatchContext",
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -19757,7 +19849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OSFamily": "System.String",
"OSVersion": "System.String"
@@ -19842,7 +19934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
}
@@ -19890,7 +19982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -19917,7 +20009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
},
"ValidateNotNullOrEmpty": true
@@ -19936,7 +20028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -19973,7 +20065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -19994,7 +20086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -20010,7 +20102,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
},
"ValidateNotNullOrEmpty": true
@@ -20020,13 +20112,43 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CurrentNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "BatchContext",
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -20132,7 +20254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OSFamily": "System.String",
"OSVersion": "System.String"
@@ -20217,7 +20339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
}
@@ -20265,7 +20387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -20292,7 +20414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
},
"ValidateNotNullOrEmpty": true
@@ -20311,7 +20433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -20348,7 +20470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -20369,7 +20491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -20385,7 +20507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
},
"ValidateNotNullOrEmpty": true
@@ -20395,13 +20517,43 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CurrentNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "BatchContext",
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -20507,7 +20659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration",
"DiskEncryptionConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration",
@@ -20600,7 +20752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
}
@@ -20648,7 +20800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -20675,7 +20827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
},
"ValidateNotNullOrEmpty": true
@@ -20694,7 +20846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -20731,7 +20883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -20752,7 +20904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -20768,7 +20920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
},
"ValidateNotNullOrEmpty": true
@@ -20778,13 +20930,43 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CurrentNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNodeCommunicationMode",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "BatchContext",
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -20864,7 +21046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IdentityReference": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference",
"AutoStorageContainerName": "System.String",
@@ -21323,7 +21505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -21390,7 +21572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile"
},
"ValidateNotNullOrEmpty": true
@@ -21412,7 +21594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Access": "Microsoft.Azure.Batch.Common.AccessScope"
}
@@ -21424,7 +21606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoUser": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification",
"UserName": "System.String"
@@ -21437,7 +21619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityId": "System.String"
}
@@ -21449,7 +21631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]",
@@ -21463,7 +21645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommonResourceFiles": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile]",
"NumberOfInstances": "System.Nullable`1[System.Int32]",
@@ -21477,7 +21659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Batch",
"Name": "Microsoft.Azure.Batch.TaskDependencies",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskDependencies, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskDependencies, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TaskIdRanges": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Batch.TaskIdRange]",
"TaskIds": "System.Collections.Generic.IReadOnlyList`1[System.String]"
@@ -21493,7 +21675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -21503,7 +21685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile"
},
"ValidateNotNullOrEmpty": true
@@ -21513,7 +21695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask"
},
"ValidateNotNullOrEmpty": true
@@ -21523,7 +21705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Default": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
"FileUploadError": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
@@ -21539,7 +21721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Registry": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry",
"WorkingDirectory": "System.Nullable`1[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory]",
@@ -21554,7 +21736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -21679,7 +21861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile"
},
"ValidateNotNullOrEmpty": true
@@ -21713,7 +21895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Access": "Microsoft.Azure.Batch.Common.AccessScope"
}
@@ -21731,7 +21913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoUser": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification",
"UserName": "System.String"
@@ -21750,7 +21932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityId": "System.String"
}
@@ -21768,7 +21950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]",
@@ -21788,7 +21970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommonResourceFiles": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile]",
"NumberOfInstances": "System.Nullable`1[System.Int32]",
@@ -21808,7 +21990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Batch",
"Name": "Microsoft.Azure.Batch.TaskDependencies",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskDependencies, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskDependencies, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TaskIdRanges": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Batch.TaskIdRange]",
"TaskIds": "System.Collections.Generic.IReadOnlyList`1[System.String]"
@@ -21830,7 +22012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -21846,7 +22028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile"
},
"ValidateNotNullOrEmpty": true
@@ -21862,7 +22044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Default": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
"FileUploadError": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
@@ -21884,7 +22066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Registry": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry",
"WorkingDirectory": "System.Nullable`1[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory]",
@@ -21905,7 +22087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -21993,7 +22175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask"
},
"ValidateNotNullOrEmpty": true
@@ -22009,7 +22191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -22082,7 +22264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -22125,7 +22307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask"
},
"ValidateNotNullOrEmpty": true
@@ -22141,7 +22323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -22214,7 +22396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -22305,7 +22487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile"
},
"ValidateNotNullOrEmpty": true
@@ -22339,7 +22521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Access": "Microsoft.Azure.Batch.Common.AccessScope"
}
@@ -22357,7 +22539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoUser": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification",
"UserName": "System.String"
@@ -22376,7 +22558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityId": "System.String"
}
@@ -22394,7 +22576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]",
@@ -22414,7 +22596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommonResourceFiles": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile]",
"NumberOfInstances": "System.Nullable`1[System.Int32]",
@@ -22434,7 +22616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Batch",
"Name": "Microsoft.Azure.Batch.TaskDependencies",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskDependencies, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskDependencies, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TaskIdRanges": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Batch.TaskIdRange]",
"TaskIds": "System.Collections.Generic.IReadOnlyList`1[System.String]"
@@ -22456,7 +22638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
},
"ValidateNotNullOrEmpty": true
@@ -22472,7 +22654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile[], Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile"
},
"ValidateNotNullOrEmpty": true
@@ -22488,7 +22670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Default": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
"FileUploadError": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
@@ -22510,7 +22692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Registry": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry",
"WorkingDirectory": "System.Nullable`1[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory]",
@@ -22531,7 +22713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -22604,7 +22786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -23204,7 +23386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -23296,7 +23478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -23411,7 +23593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -23445,7 +23627,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption"
]
@@ -23478,7 +23660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -23574,7 +23756,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption"
]
@@ -23625,7 +23807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -23698,7 +23880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -23738,7 +23920,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption"
]
@@ -23789,7 +23971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -23862,7 +24044,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption"
]
@@ -23913,7 +24095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24033,7 +24215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24140,7 +24322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24251,7 +24433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24343,7 +24525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24454,7 +24636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24546,7 +24728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24687,7 +24869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
"IsDirectory": "System.Nullable`1[System.Boolean]",
@@ -24720,7 +24902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -24860,7 +25042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25011,7 +25193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25084,7 +25266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
"IsDirectory": "System.Nullable`1[System.Boolean]",
@@ -25135,7 +25317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25238,7 +25420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25349,7 +25531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25441,7 +25623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25552,7 +25734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -25599,7 +25781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25706,7 +25888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25779,7 +25961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -25838,7 +26020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -25926,7 +26108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26037,7 +26219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -26071,7 +26253,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeReimageOption"
]
@@ -26083,7 +26265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26175,7 +26357,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeReimageOption"
]
@@ -26193,7 +26375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26266,7 +26448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -26306,7 +26488,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeReimageOption"
]
@@ -26324,7 +26506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26397,7 +26579,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeReimageOption"
]
@@ -26415,7 +26597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26526,7 +26708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -26560,7 +26742,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeRebootOption"
]
@@ -26572,7 +26754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26664,7 +26846,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeRebootOption"
]
@@ -26682,7 +26864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26755,7 +26937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -26795,7 +26977,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeRebootOption"
]
@@ -26813,7 +26995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26886,7 +27068,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeRebootOption"
]
@@ -26904,7 +27086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -26984,7 +27166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -27522,7 +27704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -27659,7 +27841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -27752,7 +27934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -27789,7 +27971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -27851,7 +28033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
@@ -27894,7 +28076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -27987,7 +28169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation",
"Statistics": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics",
@@ -28013,7 +28195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28075,7 +28257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudJobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation",
"Statistics": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics",
@@ -28107,7 +28289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28200,7 +28382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -28218,9 +28400,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -28248,7 +28432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28310,7 +28494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleRun": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
"Identity": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
@@ -28328,9 +28512,11 @@
"ResizeErrors": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
"Metadata": "System.Collections.IDictionary",
"AllocationState": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
+ "CurrentNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"State": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
+ "AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"StateTransitionTime": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -28364,7 +28550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28457,7 +28643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -28495,7 +28681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28557,7 +28743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -28601,7 +28787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28681,7 +28867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartComputeNodeServiceLogUploadResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartComputeNodeServiceLogUploadResult, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartComputeNodeServiceLogUploadResult, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NumberOfFilesUploaded": "System.Int32",
"VirtualDirectoryName": "System.String"
@@ -28740,7 +28926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -28804,7 +28990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -28944,7 +29130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29017,7 +29203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNode, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
"NodeAgentInformation": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
@@ -29105,7 +29291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29226,7 +29412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29367,7 +29553,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption"
]
@@ -29379,7 +29565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29513,7 +29699,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption"
]
@@ -29531,7 +29717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29642,7 +29828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29734,7 +29920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29845,7 +30031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -29937,7 +30123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30039,7 +30225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30116,7 +30302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30218,7 +30404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30295,7 +30481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30406,7 +30592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -30444,7 +30630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30536,7 +30722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30609,7 +30795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -30653,7 +30839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30726,7 +30912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30806,7 +30992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRunError",
"Timestamp": "System.DateTime",
@@ -30866,7 +31052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -30958,7 +31144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Batch",
"Name": "Microsoft.Azure.Commands.Batch.BatchAccountContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.BatchAccountContext, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyInUse": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
"AutoStorageProperties": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
@@ -31071,7 +31257,7 @@
"Microsoft.Azure.Management.Batch.Models.AccountKeyType": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.AccountKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.AccountKeyType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.AccountKeyType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -31168,7 +31354,7 @@
"Microsoft.Azure.Management.Batch.Models.AutoStorageProperties": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.AutoStorageProperties, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NodeIdentityReference": "Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference",
"LastKeySync": "System.DateTime",
@@ -31233,7 +31419,7 @@
"Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String"
},
@@ -31284,7 +31470,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode, Microsoft.Azure.Management.Batch, Version=14.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.Management.Batch.Models.AutoStorageAuthenticationMode, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode"
]
@@ -31292,7 +31478,7 @@
"Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -31384,7 +31570,7 @@
"Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType",
"UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities]",
@@ -31452,11 +31638,16 @@
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "principalId",
+ "Name": "userAssignedIdentities",
"Type": "System.Reflection.RuntimeParameterInfo"
- },
+ }
+ ]
+ },
+ {
+ "Name": "",
+ "Parameters": [
{
- "Name": "tenantId",
+ "Name": "type",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
@@ -31470,7 +31661,7 @@
"Microsoft.Azure.Management.Batch.Models.ResourceIdentityType": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.ResourceIdentityType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -31557,7 +31748,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities, Microsoft.Azure.Management.Batch, Version=14.0.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.Management.Batch.Models.UserAssignedIdentities, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities"
@@ -31566,7 +31757,7 @@
"Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -31617,7 +31808,7 @@
"Microsoft.Azure.Management.Batch.Models.KeyVaultReference": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.KeyVaultReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.KeyVaultReference, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.KeyVaultReference, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Url": "System.String"
@@ -31672,7 +31863,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection, Microsoft.Azure.Management.Batch, Version=14.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.Management.Batch.Models.PrivateEndpointConnection, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection"
]
@@ -31680,11 +31871,12 @@
"Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnection, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Management.Batch.Models.PrivateEndpoint",
"ProvisioningState": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnectionProvisioningState",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionState",
+ "GroupIds": "System.Collections.Generic.IList`1[System.String]",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
@@ -31749,6 +31941,10 @@
"Name": "privateEndpoint",
"Type": "System.Reflection.RuntimeParameterInfo"
},
+ {
+ "Name": "groupIds",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
{
"Name": "privateLinkServiceConnectionState",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -31760,7 +31956,7 @@
"Microsoft.Azure.Management.Batch.Models.PrivateEndpoint": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateEndpoint, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateEndpoint, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -31806,7 +32002,7 @@
"Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnectionProvisioningState": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnectionProvisioningState",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnectionProvisioningState, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateEndpointConnectionProvisioningState, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -31893,11 +32089,11 @@
"Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionState": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionState, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionState, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionStatus",
"Description": "System.String",
- "ActionRequired": "System.String"
+ "ActionsRequired": "System.String"
},
"Methods": [
{
@@ -31943,7 +32139,7 @@
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "actionRequired",
+ "Name": "actionsRequired",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -31953,7 +32149,7 @@
"Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionStatus": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionStatus, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PrivateLinkServiceConnectionStatus, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -32037,6 +32233,14 @@
}
]
},
+ "System.Collections.Generic.IList`1[System.String]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`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",
+ "GenericTypeArguments": [
+ "System.String"
+ ]
+ },
"System.Collections.Hashtable": {
"Namespace": "System.Collections",
"Name": "System.Collections.Hashtable",
@@ -32045,7 +32249,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.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.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Batch.Models.PoolAllocationMode"
]
@@ -32053,7 +32257,7 @@
"Microsoft.Azure.Management.Batch.Models.PoolAllocationMode": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PoolAllocationMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PoolAllocationMode, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -32140,7 +32344,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.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.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType"
]
@@ -32148,7 +32352,7 @@
"Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PublicNetworkAccessType, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -32303,14 +32507,6 @@
"ContainerRegistryEndpointSuffix": "System.String"
}
},
- "System.Collections.Generic.IList`1[System.String]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`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",
- "GenericTypeArguments": [
- "System.String"
- ]
- },
"Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": {
"Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
"Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
@@ -32376,7 +32572,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeEndpointConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InboundEndpoints": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint]"
},
@@ -32408,7 +32604,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint"
]
@@ -32416,7 +32612,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSInboundEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocol": "Microsoft.Azure.Batch.Common.InboundEndpointProtocol",
"BackendPort": "System.Int32",
@@ -32453,7 +32649,7 @@
"Microsoft.Azure.Batch.Common.InboundEndpointProtocol": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.InboundEndpointProtocol",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.InboundEndpointProtocol, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.InboundEndpointProtocol, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -32540,7 +32736,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeAgentInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"Version": "System.String"
@@ -32573,7 +32769,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSStartTask": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -32625,7 +32821,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Registry": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry",
"WorkingDirectory": "System.Nullable`1[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory]",
@@ -32683,7 +32879,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IdentityReference": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference",
"Password": "System.String",
@@ -32741,7 +32937,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String"
},
@@ -32778,7 +32974,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ContainerWorkingDirectory, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ContainerWorkingDirectory"
]
@@ -32786,7 +32982,7 @@
"Microsoft.Azure.Batch.Common.ContainerWorkingDirectory": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ContainerWorkingDirectory",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ContainerWorkingDirectory, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ContainerWorkingDirectory, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -32873,7 +33069,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSUserIdentity": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoUser": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification",
"UserName": "System.String"
@@ -32926,7 +33122,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "System.Nullable`1[Microsoft.Azure.Batch.Common.AutoUserScope]",
"ElevationLevel": "System.Nullable`1[Microsoft.Azure.Batch.Common.ElevationLevel]"
@@ -32974,7 +33170,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.AutoUserScope]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.AutoUserScope]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.AutoUserScope, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.AutoUserScope, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.AutoUserScope"
]
@@ -32982,7 +33178,7 @@
"Microsoft.Azure.Batch.Common.AutoUserScope": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.AutoUserScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.AutoUserScope, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.AutoUserScope, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -33069,7 +33265,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.ElevationLevel]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ElevationLevel]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ElevationLevel, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ElevationLevel, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ElevationLevel"
]
@@ -33077,7 +33273,7 @@
"Microsoft.Azure.Batch.Common.ElevationLevel": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ElevationLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ElevationLevel, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ElevationLevel, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -33164,7 +33360,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSResourceFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSResourceFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSResourceFile"
]
@@ -33172,7 +33368,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSResourceFile": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IdentityReference": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference",
"AutoStorageContainerName": "System.String",
@@ -33223,7 +33419,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Batch.Common.StartTaskState",
"ContainerInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation",
@@ -33263,7 +33459,7 @@
"Microsoft.Azure.Batch.Common.StartTaskState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.StartTaskState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.StartTaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.StartTaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -33350,7 +33546,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerId": "System.String",
"Error": "System.String",
@@ -33384,7 +33580,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskFailureInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskFailureInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskFailureInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskFailureInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Category": "Microsoft.Azure.Batch.Common.ErrorCategory",
"Details": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
@@ -33419,7 +33615,7 @@
"Microsoft.Azure.Batch.Common.ErrorCategory": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ErrorCategory",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ErrorCategory, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ErrorCategory, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -33506,7 +33702,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSNameValuePair"
]
@@ -33514,7 +33710,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNameValuePair": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNameValuePair",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNameValuePair, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNameValuePair, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -33547,7 +33743,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.TaskExecutionResult]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.TaskExecutionResult]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.TaskExecutionResult, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.TaskExecutionResult, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.TaskExecutionResult"
]
@@ -33555,7 +33751,7 @@
"Microsoft.Azure.Batch.Common.TaskExecutionResult": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.TaskExecutionResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.TaskExecutionResult, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.TaskExecutionResult, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -33650,7 +33846,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineInfo": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineInfo, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineInfo, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Commands.Batch.Models.PSImageReference"
},
@@ -33687,7 +33883,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSImageReference": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSImageReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSImageReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSImageReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExactVersion": "System.String",
"Offer": "System.String",
@@ -33759,7 +33955,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
]
@@ -33767,7 +33963,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSCertificateReference": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCertificateReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Visibility": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateVisibility]",
"StoreLocation": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertStoreLocation]",
@@ -33817,7 +34013,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateVisibility]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateVisibility]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertificateVisibility, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertificateVisibility, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.CertificateVisibility"
]
@@ -33825,7 +34021,7 @@
"Microsoft.Azure.Batch.Common.CertificateVisibility": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.CertificateVisibility",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertificateVisibility, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertificateVisibility, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -33912,7 +34108,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.CertStoreLocation]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertStoreLocation]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertStoreLocation, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertStoreLocation, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.CertStoreLocation"
]
@@ -33920,7 +34116,7 @@
"Microsoft.Azure.Batch.Common.CertStoreLocation": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.CertStoreLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertStoreLocation, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertStoreLocation, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34007,7 +34203,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError"
]
@@ -34015,7 +34211,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ErrorDetails": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
"Code": "System.String",
@@ -34049,7 +34245,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSTaskInformation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSTaskInformation]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSTaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSTaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSTaskInformation"
]
@@ -34057,7 +34253,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TaskState": "Microsoft.Azure.Batch.Common.TaskState",
"ExecutionInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation",
@@ -34094,7 +34290,7 @@
"Microsoft.Azure.Batch.Common.TaskState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.TaskState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.TaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.TaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34181,7 +34377,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation",
"FailureInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskFailureInformation",
@@ -34222,7 +34418,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.ComputeNodeState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.ComputeNodeState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.ComputeNodeState"
]
@@ -34230,7 +34426,7 @@
"Microsoft.Azure.Batch.Common.ComputeNodeState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ComputeNodeState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34317,7 +34513,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.SchedulingState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.SchedulingState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.SchedulingState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.SchedulingState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.SchedulingState"
]
@@ -34325,7 +34521,7 @@
"Microsoft.Azure.Batch.Common.SchedulingState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.SchedulingState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.SchedulingState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.SchedulingState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34412,7 +34608,7 @@
"Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DisableComputeNodeSchedulingOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34504,7 +34700,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityId": "System.String"
},
@@ -34547,7 +34743,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Access": "Microsoft.Azure.Batch.Common.AccessScope"
},
@@ -34584,7 +34780,7 @@
"Microsoft.Azure.Batch.Common.AccessScope": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.AccessScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.AccessScope, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.AccessScope, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34671,7 +34867,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityId": "System.String",
"ComputeNodeId": "System.String",
@@ -34708,7 +34904,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSExitConditions": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitConditions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Default": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
"FileUploadError": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
@@ -34749,7 +34945,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSExitOptions": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DependencyAction": "System.Nullable`1[Microsoft.Azure.Batch.Common.DependencyAction]",
"JobAction": "System.Nullable`1[Microsoft.Azure.Batch.Common.JobAction]"
@@ -34787,7 +34983,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.DependencyAction]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DependencyAction]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DependencyAction, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DependencyAction, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DependencyAction"
]
@@ -34795,7 +34991,7 @@
"Microsoft.Azure.Batch.Common.DependencyAction": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DependencyAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DependencyAction, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DependencyAction, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34882,7 +35078,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.JobAction]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.JobAction]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.JobAction, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.JobAction, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.JobAction"
]
@@ -34890,7 +35086,7 @@
"Microsoft.Azure.Batch.Common.JobAction": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.JobAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobAction, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobAction, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -34977,7 +35173,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSExitCodeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping"
]
@@ -34985,7 +35181,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitCodeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExitOptions": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
"Code": "System.Int32"
@@ -35033,7 +35229,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSExitCodeRangeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping"
]
@@ -35041,7 +35237,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSExitCodeRangeMapping, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExitOptions": "Microsoft.Azure.Commands.Batch.Models.PSExitOptions",
"End": "System.Int32",
@@ -35094,7 +35290,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMultiInstanceSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommonResourceFiles": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSResourceFile]",
"NumberOfInstances": "System.Nullable`1[System.Int32]",
@@ -35143,7 +35339,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]",
@@ -35204,7 +35400,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskDependencies": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskDependencies",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskDependencies, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskDependencies, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TaskIdRanges": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange]",
"TaskIds": "System.Collections.Generic.IReadOnlyList`1[System.String]"
@@ -35252,7 +35448,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange"
]
@@ -35260,7 +35456,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskIdRange, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"End": "System.Int32",
"Start": "System.Int32"
@@ -35316,7 +35512,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskStatistics": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -35358,7 +35554,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSApplicationPackageReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference"
]
@@ -35366,7 +35562,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSApplicationPackageReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationId": "System.String",
"Version": "System.String"
@@ -35404,7 +35600,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSOutputFile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSOutputFile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSOutputFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSOutputFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSOutputFile"
]
@@ -35412,7 +35608,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSOutputFile": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFile, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileDestination",
"UploadOptions": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileUploadOptions",
@@ -35465,7 +35661,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSOutputFileDestination": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileDestination",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileDestination, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileDestination, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Container": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileBlobContainerDestination"
},
@@ -35508,7 +35704,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSOutputFileBlobContainerDestination": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileBlobContainerDestination",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileBlobContainerDestination, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileBlobContainerDestination, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IdentityReference": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference",
"UploadHeaders": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSHttpHeader]",
@@ -35575,7 +35771,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSHttpHeader]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSHttpHeader]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSHttpHeader"
]
@@ -35583,7 +35779,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSHttpHeader": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSHttpHeader",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -35631,7 +35827,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSOutputFileUploadOptions": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileUploadOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileUploadOptions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOutputFileUploadOptions, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UploadCondition": "Microsoft.Azure.Batch.Common.OutputFileUploadCondition"
},
@@ -35674,7 +35870,7 @@
"Microsoft.Azure.Batch.Common.OutputFileUploadCondition": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.OutputFileUploadCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OutputFileUploadCondition, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OutputFileUploadCondition, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35761,7 +35957,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.TaskState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.TaskState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.TaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.TaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.TaskState"
]
@@ -35769,7 +35965,7 @@
"Microsoft.Azure.Management.Batch.Models.PackageState": {
"Namespace": "Microsoft.Azure.Management.Batch.Models",
"Name": "Microsoft.Azure.Management.Batch.Models.PackageState",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PackageState, Microsoft.Azure.Management.Batch, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Batch.Models.PackageState, Microsoft.Azure.Management.Batch, Version=14.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35856,7 +36052,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSDeleteCertificateError": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSDeleteCertificateError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDeleteCertificateError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDeleteCertificateError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Values": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
"Message": "System.String",
@@ -35890,7 +36086,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateFormat]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateFormat]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertificateFormat, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertificateFormat, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.CertificateFormat"
]
@@ -35898,7 +36094,7 @@
"Microsoft.Azure.Batch.Common.CertificateFormat": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.CertificateFormat",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertificateFormat, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertificateFormat, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35985,7 +36181,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.CertificateState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertificateState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CertificateState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.CertificateState"
]
@@ -35993,7 +36189,7 @@
"Microsoft.Azure.Batch.Common.CertificateState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.CertificateState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertificateState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CertificateState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36080,7 +36276,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRun, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRunError",
"Timestamp": "System.DateTime",
@@ -36114,7 +36310,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRunError": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRunError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRunError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoScaleRunError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Values": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
"Message": "System.String",
@@ -36148,7 +36344,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSBatchPoolIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "Microsoft.Azure.Batch.Common.PoolIdentityType",
"UserAssignedIdentities": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity]"
@@ -36181,7 +36377,7 @@
"Microsoft.Azure.Batch.Common.PoolIdentityType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.PoolIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.PoolIdentityType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.PoolIdentityType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36268,7 +36464,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity"
]
@@ -36276,7 +36472,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientId": "System.String",
"PrincipalId": "System.String",
@@ -36321,7 +36517,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OSFamily": "System.String",
"OSVersion": "System.String"
@@ -36369,7 +36565,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
"PublicIPAddressConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
@@ -36409,7 +36605,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolEndpointConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InboundNatPools": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool]"
},
@@ -36452,7 +36648,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool"
]
@@ -36460,7 +36656,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocol": "Microsoft.Azure.Batch.Common.InboundEndpointProtocol",
"NetworkSecurityGroupRules": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule]",
@@ -36528,7 +36724,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule"
]
@@ -36536,7 +36732,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNetworkSecurityGroupRule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Access": "Microsoft.Azure.Batch.Common.NetworkSecurityGroupRuleAccess",
"SourcePortRanges": "System.Collections.Generic.IReadOnlyList`1[System.String]",
@@ -36594,7 +36790,7 @@
"Microsoft.Azure.Batch.Common.NetworkSecurityGroupRuleAccess": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.NetworkSecurityGroupRuleAccess",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NetworkSecurityGroupRuleAccess, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NetworkSecurityGroupRuleAccess, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36681,7 +36877,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPublicIPAddressConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpAddressIds": "System.Collections.Generic.IList`1[System.String]",
"Provision": "System.Nullable`1[Microsoft.Azure.Batch.Common.IPAddressProvisioningType]"
@@ -36725,7 +36921,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.IPAddressProvisioningType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.IPAddressProvisioningType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.IPAddressProvisioningType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.IPAddressProvisioningType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.IPAddressProvisioningType"
]
@@ -36733,7 +36929,7 @@
"Microsoft.Azure.Batch.Common.IPAddressProvisioningType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.IPAddressProvisioningType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.IPAddressProvisioningType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.IPAddressProvisioningType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36820,7 +37016,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope"
]
@@ -36828,7 +37024,7 @@
"Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DynamicVNetAssignmentScope, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36915,7 +37111,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceStatistics": "Microsoft.Azure.Commands.Batch.Models.PSResourceStatistics",
"UsageStatistics": "Microsoft.Azure.Commands.Batch.Models.PSUsageStatistics",
@@ -36951,7 +37147,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSResourceStatistics": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResourceStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResourceStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -36995,7 +37191,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSUsageStatistics": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUsageStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUsageStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUsageStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -37029,7 +37225,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSTaskSchedulingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComputeNodeFillType": "Microsoft.Azure.Batch.Common.ComputeNodeFillType"
},
@@ -37072,7 +37268,7 @@
"Microsoft.Azure.Batch.Common.ComputeNodeFillType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ComputeNodeFillType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeFillType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeFillType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37159,7 +37355,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration",
"DiskEncryptionConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration",
@@ -37215,7 +37411,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerRegistries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry]",
"ContainerImageNames": "System.Collections.Generic.IList`1[System.String]"
@@ -37253,7 +37449,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSContainerRegistry"
]
@@ -37261,7 +37457,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDiskEncryptionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Batch.Common.DiskEncryptionTarget]"
},
@@ -37304,7 +37500,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Batch.Common.DiskEncryptionTarget]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Batch.Common.DiskEncryptionTarget]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Batch.Common.DiskEncryptionTarget, Microsoft.Azure.Batch, Version=15.3.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.Batch.Common.DiskEncryptionTarget, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DiskEncryptionTarget"
]
@@ -37312,7 +37508,7 @@
"Microsoft.Azure.Batch.Common.DiskEncryptionTarget": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DiskEncryptionTarget",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DiskEncryptionTarget, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DiskEncryptionTarget, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37399,7 +37595,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNodePlacementConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodePlacementConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodePlacementConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodePlacementConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Policy": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodePlacementPolicyType]"
},
@@ -37442,7 +37638,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.NodePlacementPolicyType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodePlacementPolicyType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.NodePlacementPolicyType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.NodePlacementPolicyType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.NodePlacementPolicyType"
]
@@ -37450,7 +37646,7 @@
"Microsoft.Azure.Batch.Common.NodePlacementPolicyType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.NodePlacementPolicyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodePlacementPolicyType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodePlacementPolicyType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37537,7 +37733,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSOSDisk": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSOSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOSDisk, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSOSDisk, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EphemeralOSDiskSettings": "Microsoft.Azure.Commands.Batch.Models.PSDiffDiskSettings"
},
@@ -37574,7 +37770,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSDiffDiskSettings": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSDiffDiskSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDiffDiskSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDiffDiskSettings, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Placement": "System.Nullable`1[Microsoft.Azure.Batch.Common.DiffDiskPlacement]"
},
@@ -37611,7 +37807,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.DiffDiskPlacement]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.DiffDiskPlacement]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DiffDiskPlacement, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.DiffDiskPlacement, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.DiffDiskPlacement"
]
@@ -37619,7 +37815,7 @@
"Microsoft.Azure.Batch.Common.DiffDiskPlacement": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.DiffDiskPlacement",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DiffDiskPlacement, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.DiffDiskPlacement, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37706,7 +37902,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSWindowsConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSWindowsConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSWindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSWindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableAutomaticUpdates": "System.Nullable`1[System.Boolean]"
},
@@ -37749,7 +37945,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSDataDisk]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSDataDisk]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSDataDisk"
]
@@ -37757,7 +37953,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSDataDisk": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskSizeGB": "System.Int32",
"Lun": "System.Int32",
@@ -37815,7 +38011,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.CachingType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.CachingType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CachingType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.CachingType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.CachingType"
]
@@ -37823,7 +38019,7 @@
"Microsoft.Azure.Batch.Common.CachingType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.CachingType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CachingType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.CachingType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37910,7 +38106,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.StorageAccountType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.StorageAccountType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.StorageAccountType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.StorageAccountType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.StorageAccountType"
]
@@ -37918,7 +38114,7 @@
"Microsoft.Azure.Batch.Common.StorageAccountType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.StorageAccountType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.StorageAccountType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.StorageAccountType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -38005,7 +38201,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSVMExtension]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSVMExtension]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSVMExtension, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSVMExtension, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSVMExtension"
]
@@ -38013,7 +38209,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSVMExtension": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVMExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVMExtension, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVMExtension, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]",
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
@@ -38076,7 +38272,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSCertificateReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSCertificateReference, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSCertificateReference"
]
@@ -38084,7 +38280,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration"
]
@@ -38092,7 +38288,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureBlobFileSystemConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSAzureBlobFileSystemConfiguration",
"AzureFileShareConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSAzureFileShareConfiguration",
@@ -38165,7 +38361,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAzureBlobFileSystemConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAzureBlobFileSystemConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAzureBlobFileSystemConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAzureBlobFileSystemConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IdentityReference": "Microsoft.Azure.Commands.Batch.Models.PSComputeNodeIdentityReference",
"AccountKey": "System.String",
@@ -38255,7 +38451,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAzureFileShareConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAzureFileShareConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAzureFileShareConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAzureFileShareConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccountKey": "System.String",
"AccountName": "System.String",
@@ -38318,7 +38514,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSCifsMountConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCifsMountConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCifsMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCifsMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MountOptions": "System.String",
"Password": "System.String",
@@ -38381,7 +38577,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNfsMountConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNfsMountConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNfsMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNfsMountConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MountOptions": "System.String",
"RelativeMountPath": "System.String",
@@ -38434,7 +38630,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSUserAccount]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSUserAccount]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSUserAccount, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSUserAccount, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSUserAccount"
]
@@ -38442,7 +38638,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSUserAccount": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSUserAccount, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxUserConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSLinuxUserConfiguration",
"WindowsUserConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSWindowsUserConfiguration",
@@ -38505,7 +38701,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSLinuxUserConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSLinuxUserConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSLinuxUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSLinuxUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Gid": "System.Nullable`1[System.Int32]",
"Uid": "System.Nullable`1[System.Int32]",
@@ -38558,7 +38754,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSWindowsUserConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSWindowsUserConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSWindowsUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSWindowsUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoginMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.LoginMode]"
},
@@ -38601,7 +38797,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.LoginMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.LoginMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.LoginMode, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.LoginMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.LoginMode"
]
@@ -38609,7 +38805,7 @@
"Microsoft.Azure.Batch.Common.LoginMode": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.LoginMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.LoginMode, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.LoginMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -38696,7 +38892,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSResizeError]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSResizeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Commands.Batch.Models.PSResizeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSResizeError"
]
@@ -38704,7 +38900,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSResizeError": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSResizeError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResizeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSResizeError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Values": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
"Message": "System.String",
@@ -38738,7 +38934,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.AllocationState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.AllocationState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.AllocationState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.AllocationState"
]
@@ -38746,7 +38942,102 @@
"Microsoft.Azure.Batch.Common.AllocationState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.AllocationState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.AllocationState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.AllocationState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Enum"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.String"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.IFormatProvider"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.String"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.IFormatProvider"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetTypeCode",
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Batch.Common.NodeCommunicationMode"
+ ]
+ },
+ "Microsoft.Azure.Batch.Common.NodeCommunicationMode": {
+ "Namespace": "Microsoft.Azure.Batch.Common",
+ "Name": "Microsoft.Azure.Batch.Common.NodeCommunicationMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.NodeCommunicationMode, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -38833,7 +39124,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.PoolState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.PoolState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.PoolState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.PoolState"
]
@@ -38841,7 +39132,7 @@
"Microsoft.Azure.Batch.Common.PoolState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.PoolState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.PoolState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.PoolState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -38928,7 +39219,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus]",
@@ -38967,7 +39258,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSInstanceViewStatus, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus"
]
@@ -38975,7 +39266,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSInstanceViewStatus, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Level": "Microsoft.Azure.Commands.Batch.Models.PSStatusLevelTypes",
"Code": "System.String",
@@ -39016,7 +39307,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSStatusLevelTypes": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSStatusLevelTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStatusLevelTypes, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSStatusLevelTypes, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "GetType",
@@ -39045,7 +39336,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobConstraints": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxTaskRetryCount": "System.Nullable`1[System.Int32]",
"MaxWallClockTime": "System.Nullable`1[System.TimeSpan]"
@@ -39093,7 +39384,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SchedulingError": "Microsoft.Azure.Commands.Batch.Models.PSJobSchedulingError",
"StartTime": "System.DateTime",
@@ -39129,7 +39420,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobSchedulingError": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobSchedulingError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSchedulingError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSchedulingError, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Category": "Microsoft.Azure.Batch.Common.ErrorCategory",
"Details": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Commands.Batch.Models.PSNameValuePair]",
@@ -39164,7 +39455,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
@@ -39228,7 +39519,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobNetworkConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SubnetId": "System.String"
},
@@ -39271,7 +39562,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints",
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
@@ -39325,7 +39616,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerSettings": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerSettings",
"UserIdentity": "Microsoft.Azure.Commands.Batch.Models.PSUserIdentity",
@@ -39378,7 +39669,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobStatistics": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -39423,7 +39714,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSPoolInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoPoolSpecification": "Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification",
"PoolId": "System.String"
@@ -39461,7 +39752,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PoolLifetimeOption": "Microsoft.Azure.Batch.Common.PoolLifetimeOption",
"PoolSpecification": "Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification",
@@ -39501,7 +39792,7 @@
"Microsoft.Azure.Batch.Common.PoolLifetimeOption": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.PoolLifetimeOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.PoolLifetimeOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.PoolLifetimeOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -39588,7 +39879,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CloudServiceConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration",
"NetworkConfiguration": "Microsoft.Azure.Commands.Batch.Models.PSNetworkConfiguration",
@@ -39601,6 +39892,7 @@
"UserAccounts": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSUserAccount]",
"ApplicationLicenses": "System.Collections.Generic.IList`1[System.String]",
"Metadata": "System.Collections.IDictionary",
+ "TargetNodeCommunicationMode": "System.Nullable`1[Microsoft.Azure.Batch.Common.NodeCommunicationMode]",
"InterComputeNodeCommunicationEnabled": "System.Nullable`1[System.Boolean]",
"AutoScaleEnabled": "System.Nullable`1[System.Boolean]",
"TargetDedicatedComputeNodes": "System.Nullable`1[System.Int32]",
@@ -39646,7 +39938,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.JobState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.JobState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.JobState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.JobState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.JobState"
]
@@ -39654,7 +39946,7 @@
"Microsoft.Azure.Batch.Common.JobState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.JobState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -39741,7 +40033,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.OnAllTasksComplete]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OnAllTasksComplete]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OnAllTasksComplete"
]
@@ -39749,7 +40041,7 @@
"Microsoft.Azure.Batch.Common.OnAllTasksComplete": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.OnAllTasksComplete",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OnAllTasksComplete, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -39836,7 +40128,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.OnTaskFailure]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OnTaskFailure]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OnTaskFailure"
]
@@ -39844,7 +40136,7 @@
"Microsoft.Azure.Batch.Common.OnTaskFailure": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.OnTaskFailure",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OnTaskFailure, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -39931,7 +40223,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecentJob": "Microsoft.Azure.Commands.Batch.Models.PSRecentJob",
"NextRunTime": "System.Nullable`1[System.DateTime]",
@@ -39965,7 +40257,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSRecentJob": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSRecentJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSRecentJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSRecentJob, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Url": "System.String"
@@ -39998,7 +40290,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobScheduleStatistics, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastUpdateTime": "System.DateTime",
"StartTime": "System.DateTime",
@@ -40043,7 +40335,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobSpecification": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobSpecification, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Constraints": "Microsoft.Azure.Commands.Batch.Models.PSJobConstraints",
"JobManagerTask": "Microsoft.Azure.Commands.Batch.Models.PSJobManagerTask",
@@ -40103,7 +40395,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSSchedule": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSchedule, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DoNotRunAfter": "System.Nullable`1[System.DateTime]",
"DoNotRunUntil": "System.Nullable`1[System.DateTime]",
@@ -40143,7 +40435,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.JobScheduleState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.JobScheduleState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.JobScheduleState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.JobScheduleState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.JobScheduleState"
]
@@ -40151,7 +40443,7 @@
"Microsoft.Azure.Batch.Common.JobScheduleState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.JobScheduleState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobScheduleState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobScheduleState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -40238,7 +40530,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTaskExecutionInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTaskExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobPreparationTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Batch.Common.JobPreparationTaskState",
"ContainerInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation",
@@ -40280,7 +40572,7 @@
"Microsoft.Azure.Batch.Common.JobPreparationTaskState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.JobPreparationTaskState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobPreparationTaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobPreparationTaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -40367,7 +40659,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTaskExecutionInformation": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTaskExecutionInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSJobReleaseTaskExecutionInformation, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "Microsoft.Azure.Batch.Common.JobReleaseTaskState",
"ContainerInformation": "Microsoft.Azure.Commands.Batch.Models.PSTaskContainerExecutionInformation",
@@ -40407,7 +40699,7 @@
"Microsoft.Azure.Batch.Common.JobReleaseTaskState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.JobReleaseTaskState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobReleaseTaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.JobReleaseTaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -40494,7 +40786,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSFileProperties": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSFileProperties, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastModified": "System.DateTime",
"ContentLength": "System.Int64",
@@ -40530,7 +40822,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSNodeCounts": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSNodeCounts",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSNodeCounts, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Creating": "System.Int32",
"Idle": "System.Int32",
@@ -40585,7 +40877,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.SubtaskState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.SubtaskState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.SubtaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.SubtaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.SubtaskState"
]
@@ -40593,7 +40885,7 @@
"Microsoft.Azure.Batch.Common.SubtaskState": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.SubtaskState",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.SubtaskState, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.SubtaskState, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -40680,7 +40972,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.OSType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.OSType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OSType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.OSType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.OSType"
]
@@ -40688,7 +40980,7 @@
"Microsoft.Azure.Batch.Common.OSType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.OSType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OSType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.OSType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -40775,7 +41067,7 @@
"System.Nullable`1[Microsoft.Azure.Batch.Common.VerificationType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Batch.Common.VerificationType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.VerificationType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Batch.Common.VerificationType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.Common.VerificationType"
]
@@ -40783,7 +41075,7 @@
"Microsoft.Azure.Batch.Common.VerificationType": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.VerificationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.VerificationType, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.VerificationType, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -40870,7 +41162,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSSkuCapability]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Batch.Models.PSSkuCapability]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Batch.Models.PSSkuCapability, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.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.Batch.Models.PSSkuCapability, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Batch.Models.PSSkuCapability"
]
@@ -40878,7 +41170,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSSkuCapability": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSSkuCapability",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSkuCapability, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSSkuCapability, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -40926,7 +41218,7 @@
"System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Batch.TaskIdRange]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IReadOnlyList`1[Microsoft.Azure.Batch.TaskIdRange]",
- "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Batch.TaskIdRange, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IReadOnlyList`1[[Microsoft.Azure.Batch.TaskIdRange, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Batch.TaskIdRange"
]
@@ -40934,7 +41226,7 @@
"Microsoft.Azure.Batch.TaskIdRange": {
"Namespace": "Microsoft.Azure.Batch",
"Name": "Microsoft.Azure.Batch.TaskIdRange",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskIdRange, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.TaskIdRange, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"End": "System.Int32",
"Start": "System.Int32"
@@ -40982,7 +41274,7 @@
"Microsoft.Azure.Commands.Batch.Models.PSCloudTask": {
"Namespace": "Microsoft.Azure.Commands.Batch.Models",
"Name": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Batch.Models.PSCloudTask, Microsoft.Azure.PowerShell.Cmdlets.Batch, Version=3.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AffinityInformation": "Microsoft.Azure.Commands.Batch.Models.PSAffinityInformation",
"AuthenticationTokenSettings": "Microsoft.Azure.Commands.Batch.Models.PSAuthenticationTokenSettings",
@@ -41055,7 +41347,7 @@
"Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeDeallocationOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -41142,7 +41434,7 @@
"Microsoft.Azure.Batch.Common.ComputeNodeReimageOption": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ComputeNodeReimageOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeReimageOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -41229,7 +41521,7 @@
"Microsoft.Azure.Batch.Common.ComputeNodeRebootOption": {
"Namespace": "Microsoft.Azure.Batch.Common",
"Name": "Microsoft.Azure.Batch.Common.ComputeNodeRebootOption",
- "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Batch.Common.ComputeNodeRebootOption, Microsoft.Azure.Batch, Version=15.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Blueprint.json b/tools/Tools.Common/SerializedCmdlets/Az.Blueprint.json
index a9ab3a2f639d..4b5c2df77aaf 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Blueprint.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Blueprint.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Blueprint",
- "ModuleVersion": "0.4.1",
+ "ModuleVersion": "0.4.2",
"Cmdlets": [
{
"VerbName": "Export",
@@ -29,7 +29,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -115,7 +115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -289,7 +289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -344,7 +344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSPublishedBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSPublishedBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSPublishedBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -1030,7 +1030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -1097,7 +1097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -1171,7 +1171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -1285,7 +1285,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -1939,7 +1939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -2322,7 +2322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -2331,7 +2331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -2490,7 +2490,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -2581,7 +2581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -2596,7 +2596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -2750,7 +2750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -2765,7 +2765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -2920,7 +2920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -2935,7 +2935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3112,7 +3112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -3179,7 +3179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3230,7 +3230,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Blueprint.Models.PSLockMode"
]
@@ -3338,7 +3338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3460,7 +3460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3535,7 +3535,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Blueprint.Models.PSLockMode"
]
@@ -3698,7 +3698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSPublishedBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSPublishedBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSPublishedBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3775,7 +3775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3856,7 +3856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -3956,7 +3956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -4041,7 +4041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -4253,7 +4253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -4383,7 +4383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprint, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -4766,7 +4766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -4775,7 +4775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -4934,7 +4934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5025,7 +5025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -5040,7 +5040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5194,7 +5194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -5209,7 +5209,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5364,7 +5364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSArtifactKind, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -5379,7 +5379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5556,7 +5556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintAssignment, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locks": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
"ProvisioningState": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
@@ -5623,7 +5623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5674,7 +5674,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Blueprint.Models.PSLockMode"
]
@@ -5782,7 +5782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5904,7 +5904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintBase, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
"TargetScope": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
@@ -5979,7 +5979,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Blueprint.Models.PSLockMode"
]
@@ -6175,7 +6175,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintStatus, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TimeCreated": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]"
@@ -6231,7 +6231,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSBlueprintTargetScope, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -6323,7 +6323,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSParameterDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition"
@@ -6332,7 +6332,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSParameterDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowedValues": "System.Collections.Generic.IList`1[System.Object]",
"DefaultValue": "System.Object",
@@ -6387,7 +6387,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSResourceGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition"
@@ -6396,7 +6396,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupDefinition, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DependsOn": "System.Collections.Generic.IList`1[System.String]",
"Name": "System.String",
@@ -6582,7 +6582,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentLockSettings, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Mode": "Microsoft.Azure.Commands.Blueprint.Models.PSLockMode"
},
@@ -6619,7 +6619,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSLockMode": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSLockMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSLockMode, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -6706,7 +6706,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -6793,7 +6793,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentStatus": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentStatus, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSAssignmentStatus, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TimeCreated": "System.Nullable`1[System.DateTime]",
"LastModified": "System.Nullable`1[System.DateTime]"
@@ -6831,7 +6831,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSManagedServiceIdentity": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity]",
"Type": "System.String",
@@ -6871,7 +6871,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity"
@@ -6880,7 +6880,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -6918,7 +6918,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSParameterValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue"
@@ -6927,7 +6927,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSParameterValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Reference": "Microsoft.Azure.Commands.Blueprint.Models.PSSecretValueReference",
"Value": "System.Object"
@@ -6965,7 +6965,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSSecretValueReference": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSSecretValueReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSSecretValueReference, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSSecretValueReference, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVault": "Microsoft.Azure.Commands.Blueprint.Models.PSKeyVaultReference",
"SecretName": "System.String",
@@ -7004,7 +7004,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSKeyVaultReference": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSKeyVaultReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSKeyVaultReference, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSKeyVaultReference, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -7041,7 +7041,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.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.Blueprint.Models.PSResourceGroupValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue"
@@ -7050,7 +7050,7 @@
"Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue": {
"Namespace": "Microsoft.Azure.Commands.Blueprint.Models",
"Name": "Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Blueprint.Models.PSResourceGroupValue, Microsoft.Azure.PowerShell.Cmdlets.Blueprint, Version=0.4.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Location": "System.String"
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Compute.json b/tools/Tools.Common/SerializedCmdlets/Az.Compute.json
index a25d80e8794f..abf259451cd4 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Compute.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Compute.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Compute",
- "ModuleVersion": "5.2.0",
+ "ModuleVersion": "5.3.0",
"Cmdlets": [
{
"VerbName": "Add",
@@ -16,7 +16,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -71,7 +71,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -194,7 +194,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -383,7 +383,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalFilePath": "System.IO.FileInfo",
"DestinationUri": "System.Uri"
@@ -1084,7 +1084,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -1173,7 +1173,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -1276,7 +1276,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -1406,7 +1406,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -1489,7 +1489,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -1563,7 +1563,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -1762,7 +1762,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -1999,7 +1999,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -2379,7 +2379,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -2465,7 +2465,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -2518,7 +2518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -2579,7 +2579,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -2638,7 +2638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -2729,7 +2729,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -2818,7 +2818,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -2943,7 +2943,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -3085,7 +3085,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -3261,7 +3261,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -3350,7 +3350,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -3462,7 +3462,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -3607,7 +3607,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -3681,7 +3681,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -3793,7 +3793,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -3947,7 +3947,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4021,7 +4021,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4190,7 +4190,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4443,7 +4443,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4517,7 +4517,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4645,7 +4645,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4827,7 +4827,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -4901,7 +4901,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -5065,7 +5065,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -5307,7 +5307,7 @@
"Type": {
"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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -5365,7 +5365,7 @@
"Type": {
"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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -5390,7 +5390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -5451,7 +5451,7 @@
"Type": {
"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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -5482,7 +5482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -5573,7 +5573,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -5662,7 +5662,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -5762,7 +5762,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -5889,7 +5889,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -5963,7 +5963,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -6119,7 +6119,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -6347,7 +6347,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.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.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand"
]
@@ -6510,7 +6510,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -7116,7 +7116,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -7411,7 +7411,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -7485,7 +7485,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -7571,7 +7571,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -7687,7 +7687,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -7761,7 +7761,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -7846,7 +7846,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -7961,7 +7961,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -8032,7 +8032,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -8168,7 +8168,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -8370,7 +8370,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -8444,7 +8444,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -8532,7 +8532,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -8650,7 +8650,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -8887,7 +8887,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -9245,7 +9245,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -9567,7 +9567,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
@@ -10030,7 +10030,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
@@ -10469,7 +10469,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -10650,7 +10650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -10878,7 +10878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -11189,7 +11189,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -11359,7 +11359,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -11590,7 +11590,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -11846,7 +11846,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -12184,7 +12184,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -12663,7 +12663,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -13235,7 +13235,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -13961,7 +13961,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -14302,7 +14302,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -14585,7 +14585,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -14813,7 +14813,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent",
@@ -15454,7 +15454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
"InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView",
@@ -15671,7 +15671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties",
"RestorePoints": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePoint]",
@@ -15837,7 +15837,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -16058,7 +16058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -16312,7 +16312,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -16395,7 +16395,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -16506,7 +16506,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -16688,7 +16688,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -17030,7 +17030,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -17271,7 +17271,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -17515,7 +17515,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -17772,7 +17772,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -17855,7 +17855,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -18254,7 +18254,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -18729,7 +18729,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -18969,7 +18969,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -19202,7 +19202,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -19475,7 +19475,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -19575,7 +19575,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -19791,7 +19791,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -19903,7 +19903,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -19992,7 +19992,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -20147,7 +20147,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -20275,7 +20275,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -20378,7 +20378,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -20609,7 +20609,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -20782,7 +20782,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Version": "System.String",
@@ -20832,7 +20832,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"SupportsMultipleExtensions": "System.Nullable`1[System.Boolean]",
@@ -21074,7 +21074,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"PublisherName": "System.String",
@@ -21237,7 +21237,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Version": "System.String",
@@ -21288,7 +21288,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutomaticOSUpgradeProperties": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties",
"OSDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImage",
@@ -21766,7 +21766,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Offer": "System.String",
@@ -21953,7 +21953,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"PublisherName": "System.String",
@@ -22091,7 +22091,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Skus": "System.String",
@@ -22303,7 +22303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView",
"Source": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource",
@@ -22523,7 +22523,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -22717,7 +22717,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MemoryInMB": "System.Int32",
"NumberOfCores": "System.Int32",
@@ -23037,7 +23037,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -23234,7 +23234,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -23626,7 +23626,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EncryptionSettings": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings",
"EncryptionEnabled": "System.Boolean",
@@ -23821,7 +23821,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Policy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
@@ -24023,7 +24023,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
"Capacity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity",
@@ -24219,7 +24219,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -24605,7 +24605,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OsVolumeEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
"DataVolumesEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
@@ -24825,7 +24825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView",
"Source": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource",
@@ -25069,7 +25069,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Management.Compute.Models.UsageName",
"StatusCode": "System.Net.HttpStatusCode",
@@ -25207,7 +25207,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessSAS": "System.String"
},
@@ -25488,7 +25488,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AccessSAS": "System.String"
},
@@ -25769,7 +25769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineInstallPatchesResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineInstallPatchesResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineInstallPatchesResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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.PatchInstallationDetail]",
@@ -25858,7 +25858,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -26736,7 +26736,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -26952,7 +26952,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -27233,7 +27233,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -27315,7 +27315,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -27543,7 +27543,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -27705,7 +27705,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -27966,7 +27966,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -28089,7 +28089,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -28546,7 +28546,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -28718,7 +28718,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -28847,7 +28847,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -29301,7 +29301,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -29458,7 +29458,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -29819,7 +29819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -30175,7 +30175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -30444,7 +30444,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -30547,7 +30547,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -30664,7 +30664,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -30818,7 +30818,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -31036,7 +31036,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -31187,7 +31187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -31624,7 +31624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -32136,7 +32136,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -32217,7 +32217,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -32312,7 +32312,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -32441,7 +32441,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -32784,7 +32784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -32992,7 +32992,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -33179,7 +33179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -33534,7 +33534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -33778,7 +33778,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -34332,7 +34332,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -35512,7 +35512,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -36219,7 +36219,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -36724,7 +36724,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -37204,7 +37204,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -37280,7 +37280,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -37370,7 +37370,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -37497,7 +37497,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -37832,7 +37832,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent",
@@ -38155,7 +38155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
"InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView",
@@ -38422,7 +38422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties",
"RestorePoints": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePoint]",
@@ -38785,7 +38785,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -38878,7 +38878,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -38985,7 +38985,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -39129,7 +39129,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -39297,7 +39297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -39652,7 +39652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -39959,7 +39959,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -40453,7 +40453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -40645,7 +40645,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -40690,7 +40690,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -40806,7 +40806,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -41363,7 +41363,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -43136,7 +43136,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -44609,7 +44609,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -45259,7 +45259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -45421,7 +45421,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -46194,7 +46194,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -46407,7 +46407,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -46620,7 +46620,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -46715,7 +46715,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -47210,7 +47210,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -48127,7 +48127,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -48326,7 +48326,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension"
},
"ValidateNotNullOrEmpty": false
@@ -48676,6 +48676,15 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "ImageReferenceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -48898,7 +48907,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension"
},
"ValidateNotNullOrEmpty": false
@@ -49435,6 +49444,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ImageReferenceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -49697,7 +49721,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension"
},
"ValidateNotNullOrEmpty": false
@@ -50234,6 +50258,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ImageReferenceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -50278,7 +50317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -51850,7 +51889,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -52066,7 +52105,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -52287,7 +52326,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -52369,7 +52408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -52567,7 +52606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -52692,7 +52731,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -52968,7 +53007,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -53050,7 +53089,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -53247,7 +53286,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskAccess, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -53371,7 +53410,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -53462,7 +53501,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -53755,7 +53794,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -53853,7 +53892,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -53944,7 +53983,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -54234,7 +54273,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -54329,7 +54368,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -54429,7 +54468,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -54745,7 +54784,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -54851,7 +54890,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -54963,7 +55002,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -55286,7 +55325,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -55381,7 +55420,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -55472,7 +55511,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -55691,7 +55730,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -55822,7 +55861,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -55904,7 +55943,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -56104,7 +56143,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -56231,7 +56270,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -56507,7 +56546,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -56562,7 +56601,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -56622,7 +56661,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -56699,7 +56738,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -56765,7 +56804,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -56856,7 +56895,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent",
@@ -57149,7 +57188,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Intent": "Microsoft.Azure.Management.Compute.Models.ProximityPlacementGroupPropertiesIntent",
@@ -57247,7 +57286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePoint, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceRestorePoint": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
"InstanceView": "Microsoft.Azure.Management.Compute.Models.RestorePointInstanceView",
@@ -57440,7 +57479,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -57607,7 +57646,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -57883,7 +57922,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -57965,7 +58004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -58121,7 +58160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -58213,7 +58252,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -58260,7 +58299,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -58742,7 +58781,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -58986,7 +59025,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -59230,7 +59269,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -59420,7 +59459,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -59882,7 +59921,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -60126,7 +60165,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -60215,7 +60254,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -60310,7 +60349,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -60426,7 +60465,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -60646,7 +60685,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -60890,7 +60929,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -61098,7 +61137,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -61342,7 +61381,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -61428,7 +61467,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -61516,7 +61555,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -61628,7 +61667,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -61717,7 +61756,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -61813,7 +61852,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -61930,7 +61969,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -62019,7 +62058,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -62114,7 +62153,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -62230,7 +62269,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -62450,7 +62489,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -62800,7 +62839,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -62874,7 +62913,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -62962,7 +63001,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63055,7 +63094,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63151,7 +63190,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63236,7 +63275,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63310,7 +63349,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63389,7 +63428,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63492,7 +63531,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63566,7 +63605,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63651,7 +63690,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63744,7 +63783,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63837,7 +63876,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -63922,7 +63961,7 @@
"Type": {
"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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -63980,7 +64019,7 @@
"Type": {
"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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -64040,7 +64079,7 @@
"Type": {
"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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -64124,7 +64163,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -64198,7 +64237,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -64283,7 +64322,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -64376,7 +64415,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -64469,7 +64508,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -64554,7 +64593,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -64820,7 +64859,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -64891,7 +64930,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -64964,7 +65003,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -65061,7 +65100,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WalkPerformed": "System.Nullable`1[System.Boolean]",
"NextPlatformUpdateDomain": "System.Nullable`1[System.Int32]"
@@ -65164,7 +65203,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -65561,7 +65600,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -65709,7 +65748,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -65800,7 +65839,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -65980,7 +66019,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -66081,7 +66120,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -66128,7 +66167,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -66688,7 +66727,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -66951,7 +66990,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -67188,7 +67227,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -67425,7 +67464,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalFilePath": "System.IO.FileInfo",
"Source": "System.Uri"
@@ -67981,7 +68020,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -68517,7 +68556,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -68599,7 +68638,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -68692,7 +68731,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -68815,7 +68854,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -68897,7 +68936,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -68990,7 +69029,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69113,7 +69152,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69195,7 +69234,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69288,7 +69327,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69411,7 +69450,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69496,7 +69535,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69592,7 +69631,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -69715,7 +69754,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -69779,7 +69818,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -69854,7 +69893,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -69959,7 +69998,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -70023,7 +70062,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -70098,7 +70137,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -70203,7 +70242,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -70258,7 +70297,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -70396,7 +70435,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -70606,7 +70645,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -70678,7 +70717,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -70761,7 +70800,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -70874,7 +70913,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -70946,7 +70985,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -71029,7 +71068,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -71142,7 +71181,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -71214,7 +71253,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -71297,7 +71336,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -71410,7 +71449,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -71464,7 +71503,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -71529,7 +71568,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -71624,7 +71663,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -71678,7 +71717,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -71743,7 +71782,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -71838,7 +71877,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -71885,7 +71924,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -72821,7 +72860,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -73169,7 +73208,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -73619,7 +73658,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -74140,7 +74179,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -74360,7 +74399,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -74684,7 +74723,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -74773,7 +74812,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -74891,7 +74930,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -75029,7 +75068,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -75137,7 +75176,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -75234,7 +75273,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -76608,7 +76647,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -76689,7 +76728,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -76751,7 +76790,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -77472,7 +77511,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -77784,7 +77823,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -78458,7 +78497,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -78728,7 +78767,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.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]",
@@ -79104,7 +79143,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -79193,7 +79232,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -79347,7 +79386,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -79536,7 +79575,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -79728,7 +79767,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -79906,7 +79945,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -80348,7 +80387,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -82485,7 +82524,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -83318,7 +83357,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -84300,7 +84339,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -84389,7 +84428,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -84615,7 +84654,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -84873,7 +84912,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -85161,7 +85200,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -85419,7 +85458,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -85707,7 +85746,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -85905,7 +85944,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -86047,7 +86086,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -86136,7 +86175,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -86424,7 +86463,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -86774,7 +86813,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -87184,7 +87223,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -87534,7 +87573,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -87944,7 +87983,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88283,7 +88322,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88372,7 +88411,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88490,7 +88529,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88647,7 +88686,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88736,7 +88775,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88827,7 +88866,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -88939,7 +88978,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -89028,7 +89067,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -89155,7 +89194,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -89308,7 +89347,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -89416,7 +89455,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -89513,7 +89552,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -89600,7 +89639,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -89616,7 +89655,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -89639,7 +89678,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -89755,7 +89794,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -89777,7 +89816,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -89806,7 +89845,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -89883,7 +89922,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -90600,7 +90639,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -90674,7 +90713,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -90762,7 +90801,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -90880,7 +90919,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
"Settings": "System.Object",
@@ -91440,7 +91479,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -91537,7 +91576,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -91889,7 +91928,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -92019,7 +92058,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -92093,7 +92132,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -92320,7 +92359,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -92661,7 +92700,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -92735,7 +92774,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -92856,7 +92895,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93031,7 +93070,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93105,7 +93144,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93181,7 +93220,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93281,7 +93320,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93355,7 +93394,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93582,6 +93621,24 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SecurityEncryptionType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SecureVMDiskEncryptionSet",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -93613,7 +93670,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -93965,6 +94022,36 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SecurityEncryptionType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecureVMDiskEncryptionSet",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -94009,7 +94096,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -94083,7 +94170,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -94168,7 +94255,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -94283,7 +94370,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -95088,7 +95175,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -95177,7 +95264,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -95277,7 +95364,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -95404,7 +95491,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -95451,7 +95538,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -95805,7 +95892,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -96068,7 +96155,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -96138,7 +96225,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -96302,7 +96389,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -96509,7 +96596,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -96746,7 +96833,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -96793,7 +96880,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -97500,7 +97587,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -97960,7 +98047,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -98236,7 +98323,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Boolean",
"PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
@@ -98503,7 +98590,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -98567,7 +98654,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -98660,7 +98747,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -98788,7 +98875,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -98905,7 +98992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -98994,7 +99081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -99206,7 +99293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -99485,7 +99572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -99559,7 +99646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -99726,7 +99813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSCapacityReservationGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.CapacityReservationGroupInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -99957,7 +100044,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -100060,7 +100147,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -100091,7 +100178,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -100208,7 +100295,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
@@ -100324,7 +100411,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -100478,7 +100565,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -100568,7 +100655,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -101013,7 +101100,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -101328,7 +101415,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -101415,7 +101502,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -102172,7 +102259,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"SharingProfile": "Microsoft.Azure.Management.Compute.Models.SharingProfile",
@@ -102726,7 +102813,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -102833,7 +102920,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -103607,7 +103694,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -104166,7 +104253,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -104274,7 +104361,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -104704,7 +104791,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -104982,7 +105069,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -105085,7 +105172,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -105364,7 +105451,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Management.Compute.Models.ExtendedLocation",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
@@ -105460,7 +105547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRestorePointCollection, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.RestorePointCollectionSourceProperties",
"RestorePoints": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RestorePoint]",
@@ -105650,7 +105737,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -105743,7 +105830,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -105764,7 +105851,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -105871,7 +105958,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -105977,7 +106064,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PurchasePlan": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
@@ -106121,7 +106208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -106204,7 +106291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -106399,7 +106486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSshPublicKeyResource, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Name": "System.String",
@@ -106521,7 +106608,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -106590,7 +106677,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -106850,7 +106937,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -107202,7 +107289,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -107520,7 +107607,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -107808,7 +107895,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
@@ -108100,7 +108187,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -108195,7 +108282,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -108787,7 +108874,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -109714,7 +109801,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
"ExtendedLocation": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
@@ -110581,7 +110668,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -110844,7 +110931,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -110945,7 +111032,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk"
},
"ValidateNotNullOrEmpty": false
@@ -110982,7 +111069,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -111127,7 +111214,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk"
},
"ValidateNotNullOrEmpty": false
@@ -111219,7 +111306,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk"
},
"ValidateNotNullOrEmpty": false
@@ -111341,7 +111428,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk"
},
"ValidateNotNullOrEmpty": false
@@ -111433,7 +111520,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -111477,7 +111564,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk"
},
"ValidateNotNullOrEmpty": false
@@ -111576,7 +111663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedOSType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes]",
"EndOfLifeDate": "System.Nullable`1[System.DateTime]",
@@ -111637,7 +111724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -111684,7 +111771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -111694,7 +111781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -111817,7 +111904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -111833,7 +111920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -111997,7 +112084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112013,7 +112100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112079,7 +112166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -112144,7 +112231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112160,7 +112247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112260,7 +112347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112276,7 +112363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112349,7 +112436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfileAdvancedSetting": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings",
"PublishingProfileTargetExtendedLocation": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[]",
@@ -112433,7 +112520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -112458,7 +112545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -112489,7 +112576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112499,7 +112586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112637,7 +112724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112653,7 +112740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112798,7 +112885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -112847,7 +112934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112863,7 +112950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -112929,7 +113016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -112960,7 +113047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationStatusTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -113009,7 +113096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113025,7 +113112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113125,7 +113212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113141,7 +113228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113214,7 +113301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedOSType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes]",
"EndOfLifeDate": "System.Nullable`1[System.DateTime]",
@@ -113283,7 +113370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -113341,7 +113428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113351,7 +113438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113481,7 +113568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -113575,7 +113662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113591,7 +113678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113679,7 +113766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfileAdvancedSetting": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings",
"PublishingProfileTargetExtendedLocation": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[]",
@@ -113843,7 +113930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"ValidateNotNullOrEmpty": false
@@ -113911,7 +113998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -113921,7 +114008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114186,7 +114273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"ValidateNotNullOrEmpty": false
@@ -114296,7 +114383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114312,7 +114399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114452,7 +114539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -114508,7 +114595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114518,7 +114605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114691,7 +114778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114707,7 +114794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114803,7 +114890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -114883,7 +114970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -114899,7 +114986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115044,7 +115131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115060,7 +115147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115224,7 +115311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -115280,7 +115367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115290,7 +115377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115478,7 +115565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115494,7 +115581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115590,7 +115677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -115670,7 +115757,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115686,7 +115773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115831,7 +115918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115847,7 +115934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -115999,7 +116086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -116055,7 +116142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116065,7 +116152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116235,7 +116322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116251,7 +116338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116347,7 +116434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -116427,7 +116514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116443,7 +116530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116588,7 +116675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116604,7 +116691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116765,7 +116852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -116821,7 +116908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -116831,7 +116918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117016,7 +117103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117032,7 +117119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117128,7 +117215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -117208,7 +117295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117224,7 +117311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117369,7 +117456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117385,7 +117472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117488,7 +117575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IVirtualMachineRunCommand",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IVirtualMachineRunCommand, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IVirtualMachineRunCommand, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceViewStatuses": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus[]",
"ProtectedParameter": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
@@ -117595,7 +117682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -117605,7 +117692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -117718,7 +117805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117728,7 +117815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -117900,7 +117987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -117916,7 +118003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -118041,7 +118128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -118057,7 +118144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -118303,7 +118390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -118319,7 +118406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -118444,7 +118531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -118460,7 +118547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -118676,7 +118763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -118692,7 +118779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -118817,7 +118904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -118833,7 +118920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -118921,7 +119008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IVirtualMachineRunCommand",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IVirtualMachineRunCommand, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IVirtualMachineRunCommand, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceViewStatuses": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus[]",
"ProtectedParameter": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
@@ -119037,7 +119124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -119047,7 +119134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -119160,7 +119247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -119170,7 +119257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -119357,7 +119444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -119373,7 +119460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -119498,7 +119585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -119514,7 +119601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -119775,7 +119862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -119791,7 +119878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -119916,7 +120003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -119932,7 +120019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120163,7 +120250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -120179,7 +120266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"ValidateNotNullOrEmpty": false
@@ -120304,7 +120391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120320,7 +120407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120408,7 +120495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplication, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SupportedOSType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes]",
"EndOfLifeDate": "System.Nullable`1[System.DateTime]",
@@ -120468,7 +120555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -120542,7 +120629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120552,7 +120639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120746,7 +120833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120762,7 +120849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120843,7 +120930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -120953,7 +121040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -120969,7 +121056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121129,7 +121216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121145,7 +121232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121233,7 +121320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersion, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublishingProfileAdvancedSetting": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings",
"PublishingProfileTargetExtendedLocation": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[]",
@@ -121316,7 +121403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -121395,7 +121482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"ValidateNotNullOrEmpty": false
@@ -121436,7 +121523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121446,7 +121533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121666,7 +121753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"ValidateNotNullOrEmpty": false
@@ -121731,7 +121818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121747,7 +121834,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -121828,7 +121915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.IComputeIdentity, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CommandId": "System.String",
"GalleryApplicationName": "System.String",
@@ -121949,7 +122036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"ValidateNotNullOrEmpty": false
@@ -122014,7 +122101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -122030,7 +122117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -122201,7 +122288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"ValidateNotNullOrEmpty": false
@@ -122266,7 +122353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -122282,7 +122369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -123232,7 +123319,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GalleryApplications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication]"
},
@@ -123269,7 +123356,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.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.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication"
]
@@ -123277,7 +123364,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVMGalleryApplication, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TreatFailureAsDeploymentFailure": "System.Nullable`1[System.Boolean]",
"EnableAutomaticUpgrade": "System.Nullable`1[System.Boolean]",
@@ -123319,7 +123406,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -129001,7 +129088,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ApplicationProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSApplicationProfile",
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
@@ -129051,7 +129138,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]"
},
@@ -129088,7 +129175,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=5.1.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.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension"
]
@@ -129096,7 +129183,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]",
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
@@ -129702,7 +129789,7 @@
"Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Type": "System.String"
@@ -130309,7 +130396,7 @@
"Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PSVirtualMachineRunCommand, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandInstanceView",
"Source": "Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource",
@@ -131604,7 +131691,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSPurchasePlan, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -134384,7 +134471,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroupInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceViewWithName]"
},
@@ -135578,7 +135665,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyVaultURL": "System.String",
"KeyEncryptionKeyURL": "System.String",
@@ -136148,7 +136235,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -136488,7 +136575,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=5.1.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.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential"
]
@@ -136496,7 +136583,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CredentialName": "System.String",
"KeyVaultName": "System.String"
@@ -136534,7 +136621,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=5.1.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.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult"
]
@@ -136542,7 +136629,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Result": "System.Boolean",
"PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
@@ -136611,7 +136698,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=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -136665,7 +136752,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes"
]
@@ -136673,7 +136760,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.OperatingSystemTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -136751,7 +136838,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Runtime.SendAsyncStep, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Target": "System.Object",
"Method": "System.Reflection.MethodInfo"
@@ -136919,18 +137006,18 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryApplicationVersionPublishingProfileAdvancedSettings, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IGalleryTargetExtendedLocation, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EncryptionDataDiskImage": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption[]",
"SecurityProfileConfidentialVMEncryptionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType]",
@@ -136946,13 +137033,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Int32"
}
@@ -136960,7 +137047,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType"
]
@@ -136968,7 +137055,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137033,7 +137120,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType"
]
@@ -137041,7 +137128,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryExtendedLocationType, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137106,7 +137193,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType"
]
@@ -137114,7 +137201,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StorageAccountType, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137179,13 +137266,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IRegionalReplicationStatus, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState]",
"Progress": "System.Nullable`1[System.Int32]",
@@ -137196,7 +137283,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState"
]
@@ -137204,7 +137291,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137269,13 +137356,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.ITargetRegion, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EncryptionDataDiskImage": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20220103.IDataDiskImageEncryption[]",
"SecurityProfileConfidentialVMEncryptionType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ConfidentialVMEncryptionType]",
@@ -137289,7 +137376,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState"
]
@@ -137297,7 +137384,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.AggregatedReplicationState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137362,7 +137449,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState"
]
@@ -137370,7 +137457,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.GalleryProvisioningState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137435,7 +137522,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode"
]
@@ -137443,7 +137530,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ReplicationMode, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137508,13 +137595,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IInstanceViewStatus, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Level": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes]",
"Time": "System.Nullable`1[System.DateTime]",
@@ -137526,7 +137613,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes"
]
@@ -137534,7 +137621,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.StatusLevelTypes, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -137599,13 +137686,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter[], Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter"
},
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Models.Api20210701.IRunCommandInputParameter, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -137614,7 +137701,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState"
]
@@ -137622,7 +137709,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState, Az.Compute.private, Version=5.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Compute.Support.ExecutionState, Az.Compute.private, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.ContainerRegistry.json b/tools/Tools.Common/SerializedCmdlets/Az.ContainerRegistry.json
index 2d4661f37786..31695f094070 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.ContainerRegistry.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.ContainerRegistry.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.ContainerRegistry",
- "ModuleVersion": "3.0.0",
+ "ModuleVersion": "3.0.1",
"Cmdlets": [
{
"VerbName": "Connect",
@@ -251,7 +251,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -645,7 +645,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Username": "System.String",
"Password": "System.String",
@@ -721,7 +721,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -851,7 +851,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1001,7 +1001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase",
"ImageName": "System.String",
@@ -1072,7 +1072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSAcrManifest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSAcrManifest, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSAcrManifest, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManifestsAttributes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase]",
"ImageName": "System.String",
@@ -1385,7 +1385,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -1478,7 +1478,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1644,7 +1644,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1771,7 +1771,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1931,7 +1931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRepositoryAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRepositoryAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRepositoryAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeableAttributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute",
"ManifestCount": "System.Nullable`1[System.Int32]",
@@ -2255,7 +2255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase",
"ImageName": "System.String",
@@ -2329,7 +2329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagList",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagList, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagList, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase]",
"ImageName": "System.String",
@@ -2367,6 +2367,15 @@
{
"Name": ""
},
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "properties",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ },
{
"Name": "",
"Parameters": [
@@ -2649,7 +2658,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRegistryUsage, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Limit": "System.Nullable`1[System.Int64]",
"CurrentValue": "System.Nullable`1[System.Int64]",
@@ -2842,7 +2851,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2936,7 +2945,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3126,7 +3135,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3283,7 +3292,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3478,7 +3487,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhookEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EventRequestMessage": "Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage",
"EventResponseMessage": "Microsoft.Azure.Management.ContainerRegistry.Models.EventResponseMessage",
@@ -3561,7 +3570,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3699,7 +3708,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -4741,7 +4750,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5054,7 +5063,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String"
@@ -5353,7 +5362,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -5433,7 +5442,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5653,7 +5662,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -5968,7 +5977,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -6091,7 +6100,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -6622,7 +6631,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7085,7 +7094,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7239,7 +7248,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -7764,7 +7773,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -7932,7 +7941,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryReplication, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"StatusTimestamp": "System.Nullable`1[System.DateTime]",
@@ -8121,7 +8130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSDeletedRepository",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSDeletedRepository, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSDeletedRepository, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManifestsDeleted": "System.Collections.Generic.IList`1[System.String]",
"TagsDeleted": "System.Collections.Generic.IList`1[System.String]"
@@ -8494,7 +8503,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -8660,7 +8669,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -8850,7 +8859,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -8960,7 +8969,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule"
},
"ValidateNotNullOrEmpty": false
@@ -8970,7 +8979,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -9029,7 +9038,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule"
},
"ValidateNotNullOrEmpty": false
@@ -9095,7 +9104,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -9115,7 +9124,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule"
},
"ValidateNotNullOrEmpty": false
@@ -9162,7 +9171,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule"
},
"ValidateNotNullOrEmpty": false
@@ -9216,7 +9225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.RegistryNameStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.RegistryNameStatus, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.RegistryNameStatus, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NameAvailable": "System.Nullable`1[System.Boolean]",
"Reason": "System.String",
@@ -9378,7 +9387,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryEventInfo, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -9463,7 +9472,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9605,7 +9614,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9750,7 +9759,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -9883,7 +9892,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10022,7 +10031,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10184,7 +10193,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10346,7 +10355,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10491,7 +10500,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10636,7 +10645,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10745,7 +10754,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10872,7 +10881,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -10955,7 +10964,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryCredential, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Username": "System.String",
"Password": "System.String",
@@ -11031,7 +11040,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -11057,7 +11066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"password",
@@ -11143,7 +11152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"password",
@@ -11193,7 +11202,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistry, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkRuleSet": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -11225,7 +11234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"password",
@@ -11275,7 +11284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"password",
@@ -11343,7 +11352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.PasswordName, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"password",
@@ -11400,7 +11409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase",
"ImageName": "System.String",
@@ -12005,7 +12014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRepositoryAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRepositoryAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSRepositoryAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeableAttributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute",
"ManifestCount": "System.Nullable`1[System.Int32]",
@@ -12327,7 +12336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase",
"ImageName": "System.String",
@@ -12660,7 +12669,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12783,7 +12792,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -13242,7 +13251,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSContainerRegistryWebhook, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Config": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -13761,7 +13770,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.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]",
@@ -13850,7 +13859,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.2.3.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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule"
]
@@ -13858,7 +13867,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSIPRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String",
@@ -13924,7 +13933,7 @@
"Microsoft.Azure.Management.ContainerRegistry.Models.IPRule": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.IPRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.IPRule, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.IPRule, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"IPAddressOrRange": "System.String"
@@ -13984,7 +13993,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.2.3.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=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule"
]
@@ -13992,7 +14001,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String",
@@ -14058,7 +14067,7 @@
"Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"VirtualNetworkResourceId": "System.String"
@@ -14113,7 +14122,7 @@
"Microsoft.Azure.Management.ContainerRegistry.Models.NetworkRuleSet": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.NetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.NetworkRuleSet, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.NetworkRuleSet, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.IPRule]",
"VirtualNetworkRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule]",
@@ -14173,7 +14182,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.IPRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.IPRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ContainerRegistry.Models.IPRule, Microsoft.Azure.Management.ContainerRegistry, Version=4.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.Management.ContainerRegistry.Models.IPRule, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.ContainerRegistry.Models.IPRule"
]
@@ -14181,7 +14190,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule, Microsoft.Azure.Management.ContainerRegistry, Version=4.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.Management.ContainerRegistry.Models.VirtualNetworkRule, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.ContainerRegistry.Models.VirtualNetworkRule"
]
@@ -14189,7 +14198,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage, Microsoft.Azure.Management.ContainerRegistry, Version=4.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.Management.ContainerRegistry.Models.RegistryUsage, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage"
]
@@ -14197,7 +14206,7 @@
"Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUsage, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Limit": "System.Nullable`1[System.Int64]",
"CurrentValue": "System.Nullable`1[System.Int64]",
@@ -14287,7 +14296,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeableAttributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute",
"Tags": "System.Collections.Generic.IList`1[System.String]",
@@ -14388,7 +14397,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DeleteEnabled": "System.Nullable`1[System.Boolean]",
"WriteEnabled": "System.Nullable`1[System.Boolean]",
@@ -14667,7 +14676,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.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.PSManifestAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSManifestAttributeBase"
]
@@ -14683,7 +14692,7 @@
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase": {
"Namespace": "Microsoft.Azure.Commands.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ChangeableAttributes": "Microsoft.Azure.Commands.ContainerRegistry.Models.PSChangeableAttribute",
"Signed": "System.Nullable`1[System.Boolean]",
@@ -14894,7 +14903,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=2.2.3.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.PSTagAttributeBase, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.ContainerRegistry.Models.PSTagAttributeBase"
]
@@ -14966,7 +14975,7 @@
"Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.CallbackConfig, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomHeaders": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -15021,7 +15030,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSEventRequestMessage, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "Microsoft.Azure.Commands.ContainerRegistry.PSEventContent",
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15068,7 +15077,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSEventContent, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Request": "Microsoft.Azure.Commands.ContainerRegistry.PSRequest",
"Source": "Microsoft.Azure.Commands.ContainerRegistry.PSSource",
@@ -15117,7 +15126,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSRequest, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Addr": "System.String",
@@ -15164,7 +15173,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSSource, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Addr": "System.String",
"InstanceID": "System.String"
@@ -15208,7 +15217,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.PSTarget, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Size": "System.Nullable`1[System.Int64]",
"Length": "System.Nullable`1[System.Int64]",
@@ -15257,7 +15266,7 @@
"Microsoft.Azure.Management.ContainerRegistry.Models.EventResponseMessage": {
"Namespace": "Microsoft.Azure.Management.ContainerRegistry.Models",
"Name": "Microsoft.Azure.Management.ContainerRegistry.Models.EventResponseMessage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.EventResponseMessage, Microsoft.Azure.Management.ContainerRegistry, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ContainerRegistry.Models.EventResponseMessage, Microsoft.Azure.PowerShell.ContainerRegistry.Sdk, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Content": "System.String",
@@ -15323,7 +15332,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.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerRegistry.Models.IPSNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"NetworkRuleType": "System.String"
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.DigitalTwins.json b/tools/Tools.Common/SerializedCmdlets/Az.DigitalTwins.json
index d7ee5102ce3f..76de0ed92a3b 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.DigitalTwins.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.DigitalTwins.json
@@ -1,5 +1,6 @@
{
- "ProcessedTypes": {},
+ "ModuleName": "Az.DigitalTwins",
+ "ModuleVersion": "0.2.0",
"Cmdlets": [
{
"VerbName": "Get",
@@ -7,26 +8,23 @@
"Name": "Get-AzDigitalTwinsEndpoint",
"ClassName": "Get-AzDigitalTwinsEndpoint",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": true,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "List",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
"ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
"CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
},
"ParameterSets": [
"__AllParameterSets"
@@ -36,79 +34,43 @@
"Parameters": [
{
"Name": "EndpointName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -117,18 +79,14 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
@@ -140,124 +98,64 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
@@ -268,20 +166,11 @@
{
"ParameterMetadata": {
"Name": "EndpointName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -292,20 +181,11 @@
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -316,20 +196,11 @@
{
"ParameterMetadata": {
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -340,20 +211,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -371,16 +234,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -391,20 +246,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -415,20 +261,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -439,20 +277,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -463,20 +293,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -487,20 +308,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -511,20 +323,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -540,20 +343,11 @@
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -564,20 +358,11 @@
{
"ParameterMetadata": {
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -588,20 +373,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -619,16 +396,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -639,20 +408,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -663,20 +423,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -687,20 +439,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -711,20 +455,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -735,20 +470,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -759,20 +485,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -788,7 +505,6 @@
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -797,18 +513,14 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -826,16 +538,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -846,20 +550,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -870,20 +565,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -894,20 +581,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -918,20 +597,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -942,20 +612,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -966,20 +627,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1002,16 +654,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1022,20 +666,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1046,20 +681,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1070,20 +697,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1094,20 +713,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1118,20 +728,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1142,20 +743,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1165,8 +757,7 @@
}
]
}
- ],
- "AliasList": []
+ ]
},
{
"VerbName": "Get",
@@ -1174,26 +765,23 @@
"Name": "Get-AzDigitalTwinsInstance",
"ClassName": "Get-AzDigitalTwinsInstance",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": true,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
"DefaultParameterSetName": "List",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
"ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
+ "PublicNetworkAccess": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess]",
"CreatedTime": "System.Nullable`1[System.DateTime]",
"LastUpdatedTime": "System.Nullable`1[System.DateTime]",
"HostName": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ }
},
"ParameterSets": [
"__AllParameterSets"
@@ -1203,61 +791,34 @@
"Parameters": [
{
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -1266,18 +827,14 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
@@ -1289,124 +846,64 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
@@ -1417,20 +914,11 @@
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -1441,20 +929,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1472,16 +952,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1492,20 +964,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1516,20 +979,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1540,20 +995,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1564,20 +1011,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1588,20 +1026,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1612,20 +1041,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1641,20 +1061,11 @@
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -1665,20 +1076,11 @@
{
"ParameterMetadata": {
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -1689,20 +1091,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1720,16 +1114,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1740,20 +1126,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1764,20 +1141,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1788,20 +1157,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1812,20 +1173,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1836,20 +1188,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1860,20 +1203,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1889,20 +1223,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1920,16 +1246,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1940,20 +1258,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1964,20 +1273,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -1988,20 +1289,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2012,20 +1305,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2036,20 +1320,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2060,20 +1335,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2089,7 +1355,6 @@
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -2098,18 +1363,14 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -2127,16 +1388,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2147,20 +1400,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2171,20 +1415,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2195,20 +1431,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2219,20 +1447,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2243,20 +1462,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2267,20 +1477,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2303,16 +1504,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2323,20 +1516,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2347,20 +1531,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2371,20 +1547,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2395,20 +1563,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2419,20 +1578,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2443,20 +1593,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2466,124 +1607,40 @@
}
]
}
- ],
- "AliasList": []
+ ]
},
{
- "VerbName": "New",
- "NounName": "AzDigitalTwinsCheckNameRequestObject",
- "Name": "New-AzDigitalTwinsCheckNameRequestObject",
- "ClassName": "New-AzDigitalTwinsCheckNameRequestObject",
+ "VerbName": "Get",
+ "NounName": "AzDigitalTwinsPrivateEndpointConnection",
+ "Name": "Get-AzDigitalTwinsPrivateEndpointConnection",
+ "ClassName": "Get-AzDigitalTwinsPrivateEndpointConnection",
"SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": null,
+ "ConfirmImpact": 0,
"SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
+ "DefaultParameterSetName": "List",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.CheckNameRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.CheckNameRequest, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState]",
+ "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "PrivateLinkServiceConnectionStateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus]",
+ "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]",
+ "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]",
+ "Id": "System.String",
"Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "FromJson",
- "Parameters": [
- {
- "Name": "node",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest"
- },
- {
- "Name": "ToJson",
- "Parameters": [
- {
- "Name": "container",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonObject"
- },
- {
- "Name": "serializationMode",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SerializationMode"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode"
- },
- {
- "Name": "DeserializeFromDictionary",
- "Parameters": [
- {
- "Name": "content",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest"
- },
- {
- "Name": "DeserializeFromPSObject",
- "Parameters": [
- {
- "Name": "content",
- "Type": "System.Management.Automation.PSObject"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest"
- },
- {
- "Name": "FromJsonString",
- "Parameters": [
- {
- "Name": "jsonText",
- "Type": "System.String"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest"
- },
- {
- "Name": "ToJsonString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "Parameters": [],
- "ReturnType": null
- }
- ]
+ "PrivateEndpointId": "System.String",
+ "PrivateLinkServiceConnectionStateActionsRequired": "System.String",
+ "PrivateLinkServiceConnectionStateDescription": "System.String",
+ "SystemDataCreatedBy": "System.String",
+ "SystemDataLastModifiedBy": "System.String",
+ "Type": "System.String",
+ "GroupId": "System.String[]"
+ }
},
"ParameterSets": [
"__AllParameterSets"
@@ -2593,384 +1650,195 @@
"Parameters": [
{
"Name": "Name",
- "AliasList": [],
+ "AliasList": [
+ "PrivateEndpointConnectionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
+ },
{
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.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
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "New",
- "NounName": "AzDigitalTwinsDigitalTwinsIdentityObject",
- "Name": "New-AzDigitalTwinsDigitalTwinsIdentityObject",
- "ClassName": "New-AzDigitalTwinsDigitalTwinsIdentityObject",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": null,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
+ "Name": "InputObject",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.DigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.DigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "FromJson",
- "Parameters": [
- {
- "Name": "node",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity"
- },
- {
- "Name": "ToJson",
- "Parameters": [
- {
- "Name": "container",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonObject"
- },
- {
- "Name": "serializationMode",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SerializationMode"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode"
- },
- {
- "Name": "DeserializeFromDictionary",
- "Parameters": [
- {
- "Name": "content",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity"
- },
- {
- "Name": "DeserializeFromPSObject",
- "Parameters": [
- {
- "Name": "content",
- "Type": "System.Management.Automation.PSObject"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity"
- },
- {
- "Name": "FromJsonString",
- "Parameters": [
- {
- "Name": "jsonText",
- "Type": "System.String"
- }
- ],
- "ReturnType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity"
- },
- {
- "Name": "ToJsonString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "Parameters": [],
- "ReturnType": null
- }
- ]
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
+ "ValidateNotNullOrEmpty": false
+ },
{
- "Name": "EndpointName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Id",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Location",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ProxyCredential",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "Get",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "EndpointName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "PrivateEndpointConnectionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Id",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -2980,21 +1848,16 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3004,608 +1867,74 @@
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "New",
- "NounName": "AzDigitalTwinsEndpoint",
- "Name": "New-AzDigitalTwinsEndpoint",
- "ClassName": "New-AzDigitalTwinsEndpoint",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": true,
- "SupportsPaging": false,
- "DefaultParameterSetName": "EventHub",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "EndpointName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "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=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ResourceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "SubscriptionId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EndpointType",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "CompleteArgument",
- "Parameters": [
- {
- "Name": "commandName",
- "Type": "System.String"
- },
- {
- "Name": "parameterName",
- "Type": "System.String"
- },
- {
- "Name": "wordToComplete",
- "Type": "System.String"
- },
- {
- "Name": "commandAst",
- "Type": "System.Management.Automation.Language.CommandAst"
- },
- {
- "Name": "fakeBoundParameters",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ConnectionStringPrimaryKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "EndpointDescription",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ConnectionStringSecondaryKey",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DeadLetterSecret",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PrimaryConnectionString",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TopicEndpoint",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AccessKey1",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.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=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Break",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Proxy",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ProxyCredential",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "EndpointName",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ProxyCredential",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3615,163 +1944,63 @@
},
{
"ParameterMetadata": {
- "Name": "EndpointType",
- "AliasList": [],
+ "Name": "ProxyUseDefaultCredentials",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "CompleteArgument",
- "Parameters": [
- {
- "Name": "commandName",
- "Type": "System.String"
- },
- {
- "Name": "parameterName",
- "Type": "System.String"
- },
- {
- "Name": "wordToComplete",
- "Type": "System.String"
- },
- {
- "Name": "commandAst",
- "Type": "System.Management.Automation.Language.CommandAst"
- },
- {
- "Name": "fakeBoundParameters",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "List",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "EndpointDescription",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DeadLetterSecret",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "SubscriptionId",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3781,21 +2010,16 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3806,20 +2030,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3830,20 +2045,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3854,44 +2061,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3902,20 +2077,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3926,20 +2092,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3950,20 +2107,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -3974,49 +2122,46 @@
]
},
{
- "Name": "EventHub",
+ "Name": "GetViaIdentity",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ConnectionStringPrimaryKey",
- "AliasList": [],
+ "Name": "InputObject",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ConnectionStringSecondaryKey",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4026,93 +2171,59 @@
},
{
"ParameterMetadata": {
- "Name": "EndpointName",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4122,143 +2233,39 @@
},
{
"ParameterMetadata": {
- "Name": "EndpointType",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "CompleteArgument",
- "Parameters": [
- {
- "Name": "commandName",
- "Type": "System.String"
- },
- {
- "Name": "parameterName",
- "Type": "System.String"
- },
- {
- "Name": "wordToComplete",
- "Type": "System.String"
- },
- {
- "Name": "commandAst",
- "Type": "System.Management.Automation.Language.CommandAst"
- },
- {
- "Name": "fakeBoundParameters",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EndpointDescription",
- "AliasList": [],
+ "Name": "ProxyCredential",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DeadLetterSecret",
- "AliasList": [],
+ "Name": "ProxyUseDefaultCredentials",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -4269,40 +2276,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4313,20 +2288,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4337,20 +2303,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4361,44 +2319,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4409,20 +2335,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4433,20 +2350,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4457,20 +2365,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4479,75 +2378,178 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzDigitalTwinsPrivateLinkResource",
+ "Name": "Get-AzDigitalTwinsPrivateLinkResource",
+ "ClassName": "Get-AzDigitalTwinsPrivateLinkResource",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IGroupIdInformation",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IGroupIdInformation, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "GroupId": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "RequiredMember": "System.String[]",
+ "RequiredZoneName": "System.String[]"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ServiceBus",
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "List",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "PrimaryConnectionString",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EndpointName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.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": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -4558,20 +2560,11 @@
{
"ParameterMetadata": {
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -4582,159 +2575,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.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": "EndpointType",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "CompleteArgument",
- "Parameters": [
- {
- "Name": "commandName",
- "Type": "System.String"
- },
- {
- "Name": "parameterName",
- "Type": "System.String"
- },
- {
- "Name": "wordToComplete",
- "Type": "System.String"
- },
- {
- "Name": "commandAst",
- "Type": "System.Management.Automation.Language.CommandAst"
- },
- {
- "Name": "fakeBoundParameters",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EndpointDescription",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeadLetterSecret",
- "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4752,40 +2598,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4796,20 +2610,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4820,20 +2625,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4844,44 +2641,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4892,20 +2657,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4916,20 +2672,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4940,20 +2687,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -4964,25 +2702,16 @@
]
},
{
- "Name": "EventGrid",
+ "Name": "Get",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TopicEndpoint",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -4992,21 +2721,12 @@
},
{
"ParameterMetadata": {
- "Name": "AccessKey1",
- "AliasList": [],
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -5016,21 +2736,12 @@
},
{
"ParameterMetadata": {
- "Name": "EndpointName",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -5040,69 +2751,47 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5112,136 +2801,44 @@
},
{
"ParameterMetadata": {
- "Name": "EndpointType",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "CompleteArgument",
- "Parameters": [
- {
- "Name": "commandName",
- "Type": "System.String"
- },
- {
- "Name": "parameterName",
- "Type": "System.String"
- },
- {
- "Name": "wordToComplete",
- "Type": "System.String"
- },
- {
- "Name": "commandAst",
- "Type": "System.Management.Automation.Language.CommandAst"
- },
- {
- "Name": "fakeBoundParameters",
- "Type": "System.Collections.IDictionary"
- }
- ],
- "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EndpointDescription",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DeadLetterSecret",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5251,24 +2848,12 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "ProxyCredential",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5278,45 +2863,62 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "ProxyUseDefaultCredentials",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5326,21 +2928,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5350,21 +2943,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5374,21 +2959,13 @@
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5399,20 +2976,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5423,20 +2991,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5447,20 +3006,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5469,154 +3019,209 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "New",
- "NounName": "AzDigitalTwinsInstance",
- "Name": "New-AzDigitalTwinsInstance",
- "ClassName": "New-AzDigitalTwinsInstance",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": true,
- "SupportsPaging": false,
- "DefaultParameterSetName": "CreateExpanded",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
- "HostName": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "Name": "Get-AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "ClassName": "Get-AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "List",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "TimeSeriesDatabaseConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "DigitalTwinsCreate",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
- "HostName": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Location",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Tag",
- "AliasList": [],
+ "Name": "InputObject",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
@@ -5628,184 +3233,82 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.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=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "Get",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "TimeSeriesDatabaseConnectionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -5815,21 +3318,12 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -5839,48 +3333,28 @@
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "SubscriptionId",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5890,21 +3364,16 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5915,20 +3384,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5939,20 +3399,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -5963,44 +3415,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6011,20 +3431,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6035,20 +3446,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6059,20 +3461,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6083,54 +3476,16 @@
]
},
{
- "Name": "Create",
+ "Name": "List",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "DigitalTwinsCreate",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
- "HostName": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -6141,20 +3496,11 @@
{
"ParameterMetadata": {
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -6165,20 +3511,12 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6196,40 +3534,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.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": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6240,20 +3546,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6264,20 +3561,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6288,20 +3577,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6311,45 +3592,12 @@
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.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": "Proxy",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6360,20 +3608,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6384,20 +3623,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6408,49 +3638,61 @@
]
},
{
- "Name": "CreateExpanded",
+ "Name": "GetViaIdentity",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "InputObject",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6460,69 +3702,44 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6532,24 +3749,12 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "ProxyCredential",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6559,45 +3764,36 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "ProxyUseDefaultCredentials",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6607,21 +3803,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "Break",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6631,21 +3818,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6655,21 +3834,13 @@
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6680,20 +3851,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6704,20 +3866,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6728,20 +3881,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -6751,35 +3895,31 @@
}
]
}
- ],
- "AliasList": []
+ ]
},
{
- "VerbName": "Remove",
+ "VerbName": "New",
"NounName": "AzDigitalTwinsEndpoint",
- "Name": "Remove-AzDigitalTwinsEndpoint",
- "ClassName": "Remove-AzDigitalTwinsEndpoint",
- "SupportsShouldProcess": false,
+ "Name": "New-AzDigitalTwinsEndpoint",
+ "ClassName": "New-AzDigitalTwinsEndpoint",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
- "HasForceSwitch": true,
"SupportsPaging": false,
- "DefaultParameterSetName": "Delete",
+ "DefaultParameterSetName": "EventHub",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
"ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
"CreatedTime": "System.Nullable`1[System.DateTime]",
- "DeadLetterSecret": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
},
"ParameterSets": [
"__AllParameterSets"
@@ -6789,99 +3929,136 @@
"Parameters": [
{
"Name": "EndpointName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "EndpointType",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConnectionStringPrimaryKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EndpointDescription",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AuthenticationType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ConnectionStringSecondaryKey",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DeadLetterSecret",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DeadLetterUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PrimaryConnectionString",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TopicEndpoint",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AccessKey1",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
@@ -6893,202 +4070,97 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "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=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.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=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
{
- "Name": "Delete",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
"Name": "EndpointName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -7099,20 +4171,11 @@
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -7123,20 +4186,11 @@
{
"ParameterMetadata": {
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -7147,20 +4201,11 @@
{
"ParameterMetadata": {
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7170,72 +4215,50 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "EndpointType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "EndpointDescription",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "AuthenticationType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7245,21 +4268,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "DeadLetterSecret",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7269,21 +4283,77 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "DeadLetterUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7293,21 +4363,13 @@
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7317,21 +4379,12 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "NoWait",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7342,20 +4395,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7366,20 +4410,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7390,20 +4425,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7414,59 +4440,31 @@
]
},
{
- "Name": "DeleteViaIdentity",
+ "Name": "EventHub",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "ConnectionStringPrimaryKey",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "ConnectionStringSecondaryKey",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7476,93 +4474,57 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "EndpointName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7572,69 +4534,50 @@
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
+ "Name": "EndpointType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "EndpointDescription",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "AuthenticationType",
"Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7644,21 +4587,12 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyCredential",
- "AliasList": [],
+ "Name": "DeadLetterSecret",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7668,33 +4602,19 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "DeadLetterUri",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7705,16 +4625,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7725,20 +4637,11 @@
{
"ParameterMetadata": {
"Name": "AsJob",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7749,20 +4652,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7773,20 +4667,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7797,20 +4683,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7821,44 +4699,11 @@
{
"ParameterMetadata": {
"Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.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": "PassThru",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7869,20 +4714,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7893,20 +4729,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7917,20 +4744,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -7939,327 +4757,18 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzDigitalTwinsInstance",
- "Name": "Remove-AzDigitalTwinsInstance",
- "ClassName": "Remove-AzDigitalTwinsInstance",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "HasForceSwitch": true,
- "SupportsPaging": false,
- "DefaultParameterSetName": "Delete",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
- "HostName": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ResourceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "SubscriptionId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.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=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Break",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.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=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Proxy",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ProxyCredential",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "Delete",
+ "Name": "ServiceBus",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "PrimaryConnectionString",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -8269,21 +4778,12 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "EndpointName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -8293,120 +4793,42 @@
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.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": [
- "AzureRMContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "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=7.1.0.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
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8416,69 +4838,50 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "EndpointType",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
+ "Name": "EndpointDescription",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "AuthenticationType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8488,45 +4891,12 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "DeadLetterSecret",
"Type": {
"Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.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": "ProxyCredential",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8536,63 +4906,18 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "DeadLetterUri",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "DeleteViaIdentity",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -8604,16 +4929,8 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8624,20 +4941,11 @@
{
"ParameterMetadata": {
"Name": "AsJob",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8648,20 +4956,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8672,20 +4971,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8696,20 +4987,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8720,44 +5003,11 @@
{
"ParameterMetadata": {
"Name": "NoWait",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.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": "PassThru",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8768,20 +5018,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8792,20 +5033,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8816,20 +5048,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8840,76 +5063,91 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "EventGrid",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "TopicEndpoint",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "AccessKey1",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "EndpointName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8919,21 +5157,50 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "EndpointType",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EndpointDescription",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuthenticationType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8943,21 +5210,92 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "DeadLetterSecret",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeadLetterUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8967,21 +5305,13 @@
},
{
"ParameterMetadata": {
- "Name": "NoWait",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -8991,21 +5321,12 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
+ "Name": "NoWait",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9016,20 +5337,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9040,20 +5352,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9064,20 +5367,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9087,34 +5381,31 @@
}
]
}
- ],
- "AliasList": []
+ ]
},
{
- "VerbName": "Test",
- "NounName": "AzDigitalTwinsInstanceNameAvailability",
- "Name": "Test-AzDigitalTwinsInstanceNameAvailability",
- "ClassName": "Test-AzDigitalTwinsInstanceNameAvailability",
- "SupportsShouldProcess": false,
+ "VerbName": "New",
+ "NounName": "AzDigitalTwinsInstance",
+ "Name": "New-AzDigitalTwinsInstance",
+ "ClassName": "New-AzDigitalTwinsInstance",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
- "HasForceSwitch": true,
"SupportsPaging": false,
- "DefaultParameterSetName": "CheckExpanded",
+ "DefaultParameterSetName": "CreateExpanded",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameResult",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameResult, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Reason": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason]",
- "NameAvailable": "System.Nullable`1[System.Boolean]",
- "Message": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
+ "PublicNetworkAccess": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
+ "HostName": "System.String"
+ }
},
"ParameterSets": [
"__AllParameterSets"
@@ -9123,44 +5414,34 @@
],
"Parameters": [
{
- "Name": "Location",
- "AliasList": [],
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -9169,57 +5450,60 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Name",
- "AliasList": [],
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "DigitalTwinsInstanceCheckName",
- "AliasList": [],
+ "Name": "IdentityType",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PrivateEndpointConnection",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PublicNetworkAccess",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
@@ -9231,148 +5515,97 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
{
- "Name": "Check",
+ "Name": "CreateExpanded",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -9382,99 +5615,57 @@
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DigitalTwinsInstanceCheckName",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "Location",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "IdentityType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9484,21 +5675,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "PrivateEndpointConnection",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9508,21 +5691,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "PublicNetworkAccess",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9532,21 +5706,12 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "Tag",
"Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9556,21 +5721,16 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyCredential",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9580,74 +5740,12 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "AsJob",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.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
- }
- ]
- },
- {
- "Name": "CheckExpanded",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.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": "SubscriptionId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9657,48 +5755,12 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.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": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "Break",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9708,21 +5770,13 @@
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9732,21 +5786,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9756,21 +5802,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "NoWait",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9781,20 +5818,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9805,20 +5833,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9829,20 +5848,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9853,12 +5863,11 @@
]
},
{
- "Name": "CheckViaIdentity",
+ "Name": "CreateViaIdentityExpanded",
"Parameters": [
{
"ParameterMetadata": {
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -9867,18 +5876,14 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -9888,75 +5893,27 @@
},
{
"ParameterMetadata": {
- "Name": "DigitalTwinsInstanceCheckName",
- "AliasList": [],
+ "Name": "Location",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.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": "Break",
- "AliasList": [],
+ "Name": "IdentityType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9966,21 +5923,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "PrivateEndpointConnection",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -9990,21 +5939,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "PublicNetworkAccess",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10014,21 +5954,12 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "Tag",
"Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10038,21 +5969,16 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyCredential",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10062,108 +5988,27 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "AsJob",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "CheckViaIdentityExpanded",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "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=5.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": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "Break",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10173,21 +6018,13 @@
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10197,21 +6034,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10221,21 +6050,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "NoWait",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10246,20 +6066,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10270,20 +6081,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10294,20 +6096,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10322,48 +6115,27 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "Location",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "IdentityType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10373,21 +6145,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "PrivateEndpointConnection",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10397,21 +6161,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "PublicNetworkAccess",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10421,21 +6176,123 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "Tag",
"Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10446,20 +6303,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10470,20 +6318,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10493,35 +6332,40 @@
}
]
}
- ],
- "AliasList": []
+ ]
},
{
- "VerbName": "Update",
- "NounName": "AzDigitalTwinsInstance",
- "Name": "Update-AzDigitalTwinsInstance",
- "ClassName": "Update-AzDigitalTwinsInstance",
- "SupportsShouldProcess": false,
+ "VerbName": "New",
+ "NounName": "AzDigitalTwinsPrivateEndpointConnection",
+ "Name": "New-AzDigitalTwinsPrivateEndpointConnection",
+ "ClassName": "New-AzDigitalTwinsPrivateEndpointConnection",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
- "HasForceSwitch": true,
"SupportsPaging": false,
- "DefaultParameterSetName": "UpdateExpanded",
+ "DefaultParameterSetName": "CreateExpanded",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
- "CreatedTime": "System.Nullable`1[System.DateTime]",
- "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
- "HostName": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState]",
+ "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "PrivateLinkServiceConnectionStateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus]",
+ "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]",
+ "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "PrivateEndpointId": "System.String",
+ "PrivateLinkServiceConnectionStateActionsRequired": "System.String",
+ "PrivateLinkServiceConnectionStateDescription": "System.String",
+ "SystemDataCreatedBy": "System.String",
+ "SystemDataLastModifiedBy": "System.String",
+ "Type": "System.String",
+ "GroupId": "System.String[]"
+ }
},
"ParameterSets": [
"__AllParameterSets"
@@ -10529,63 +6373,47 @@
}
],
"Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "PrivateEndpointConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ResourceGroupName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ResourceName",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "SubscriptionId",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "InputObject",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
@@ -10594,56 +6422,51 @@
"EndpointName": "System.String",
"Id": "System.String",
"Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
"ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
"ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "DigitalTwinsPatchDescription",
- "AliasList": [],
+ "Name": "GroupId",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tag": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescriptionTags"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Tag",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateActionsRequired",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PrivateLinkServiceConnectionStateDescription",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PrivateLinkServiceConnectionStateStatus",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
@@ -10655,148 +6478,100 @@
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
}
],
"ParameterSets": [
{
- "Name": "UpdateExpanded",
+ "Name": "CreateExpanded",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "PrivateEndpointConnectionName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -10806,21 +6581,12 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": true,
@@ -10830,45 +6596,27 @@
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "ResourceName",
"Type": {
"Namespace": "System",
"Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [],
+ "Name": "SubscriptionId",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10878,24 +6626,13 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "GroupId",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10905,21 +6642,12 @@
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateActionsRequired",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10929,21 +6657,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateDescription",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10953,21 +6672,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateStatus",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -10977,21 +6687,16 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11001,21 +6706,12 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyCredential",
- "AliasList": [],
+ "Name": "AsJob",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11025,98 +6721,59 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "Break",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "Update",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SubscriptionId",
- "AliasList": [],
+ "Name": "NoWait",
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11126,50 +6783,27 @@
},
{
"ParameterMetadata": {
- "Name": "DigitalTwinsPatchDescription",
- "AliasList": [],
+ "Name": "Proxy",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tag": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescriptionTags"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "ProxyCredential",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11179,69 +6813,59 @@
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "ProxyUseDefaultCredentials",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "CreateViaIdentityExpanded",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "InputObject",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "GroupId",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11251,21 +6875,12 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateActionsRequired",
"Type": {
"Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11275,21 +6890,12 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyCredential",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateDescription",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11299,81 +6905,31 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateStatus",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "UpdateViaIdentityExpanded",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11383,24 +6939,12 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "AsJob",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11411,20 +6955,11 @@
{
"ParameterMetadata": {
"Name": "Break",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11435,20 +6970,12 @@
{
"ParameterMetadata": {
"Name": "HttpPipelineAppend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11459,20 +6986,27 @@
{
"ParameterMetadata": {
"Name": "HttpPipelinePrepend",
- "AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11483,20 +7017,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11507,20 +7032,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11531,20 +7047,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11555,109 +7062,17 @@
]
},
{
- "Name": "UpdateViaIdentity",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DigitalTwinsPatchDescription",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Tag": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescriptionTags"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.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": "Break",
- "AliasList": [],
+ "Name": "GroupId",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11667,21 +7082,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateActionsRequired",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11691,21 +7097,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateDescription",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11715,21 +7112,12 @@
},
{
"ParameterMetadata": {
- "Name": "Proxy",
- "AliasList": [],
+ "Name": "PrivateLinkServiceConnectionStateStatus",
"Type": {
- "Namespace": "System",
- "Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11739,21 +7127,16 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyCredential",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11763,53 +7146,27 @@
},
{
"ParameterMetadata": {
- "Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
+ "Name": "AsJob",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzureRMContext",
- "AzureCredential"
- ],
+ "Name": "Break",
"Type": {
"Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11819,21 +7176,13 @@
},
{
"ParameterMetadata": {
- "Name": "Break",
- "AliasList": [],
+ "Name": "HttpPipelineAppend",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11843,21 +7192,13 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelineAppend",
- "AliasList": [],
+ "Name": "HttpPipelinePrepend",
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11867,21 +7208,12 @@
},
{
"ParameterMetadata": {
- "Name": "HttpPipelinePrepend",
- "AliasList": [],
+ "Name": "NoWait",
"Type": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11892,20 +7224,11 @@
{
"ParameterMetadata": {
"Name": "Proxy",
- "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Uri",
- "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11916,20 +7239,11 @@
{
"ParameterMetadata": {
"Name": "ProxyCredential",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.PSCredential",
- "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11940,20 +7254,11 @@
{
"ParameterMetadata": {
"Name": "ProxyUseDefaultCredentials",
- "AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -11963,158 +7268,6240 @@
}
]
}
- ],
- "AliasList": []
- }
- ],
- "TypeDictionary": {
- "System.String": {
- "Namespace": null,
- "Name": "System.String",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Boolean": {
- "Namespace": null,
- "Name": "System.Boolean",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Byte": {
- "Namespace": null,
- "Name": "System.Byte",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.SByte": {
- "Namespace": null,
- "Name": "System.SByte",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Int16": {
- "Namespace": null,
- "Name": "System.Int16",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.UInt16": {
- "Namespace": null,
- "Name": "System.UInt16",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "Name": "New-AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "ClassName": "New-AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Create",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "TimeSeriesDatabaseConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AdxDatabaseName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AdxEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AdxResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AdxTableName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EventHubEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EventHubEntityPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EventHubNamespaceResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TimeSeriesDatabaseConnectionDescription",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Create",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "TimeSeriesDatabaseConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxDatabaseName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxTableName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubEntityPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubNamespaceResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TimeSeriesDatabaseConnectionDescription",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxDatabaseName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxTableName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubEntityPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubNamespaceResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TimeSeriesDatabaseConnectionDescription",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AdxDatabaseName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdxTableName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubEndpointUri",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubEntityPath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EventHubNamespaceResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TimeSeriesDatabaseConnectionDescription",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzDigitalTwinsEndpoint",
+ "Name": "Remove-AzDigitalTwinsEndpoint",
+ "ClassName": "Remove-AzDigitalTwinsEndpoint",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResource, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AuthenticationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "DeadLetterSecret": "System.String",
+ "DeadLetterUri": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "EndpointName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "EndpointName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzDigitalTwinsInstance",
+ "Name": "Remove-AzDigitalTwinsInstance",
+ "ClassName": "Remove-AzDigitalTwinsInstance",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
+ "PublicNetworkAccess": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
+ "HostName": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzDigitalTwinsPrivateEndpointConnection",
+ "Name": "Remove-AzDigitalTwinsPrivateEndpointConnection",
+ "ClassName": "Remove-AzDigitalTwinsPrivateEndpointConnection",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "PrivateEndpointConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "PrivateEndpointConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "Name": "Remove-AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "ClassName": "Remove-AzDigitalTwinsTimeSeriesDatabaseConnection",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "Delete",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "ConnectionType": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "TimeSeriesDatabaseConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "Delete",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "TimeSeriesDatabaseConnectionName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "DeleteViaIdentity",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Test",
+ "NounName": "AzDigitalTwinsInstanceNameAvailability",
+ "Name": "Test-AzDigitalTwinsInstanceNameAvailability",
+ "ClassName": "Test-AzDigitalTwinsInstanceNameAvailability",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CheckExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ICheckNameResult",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ICheckNameResult, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Reason": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason]",
+ "NameAvailable": "System.Nullable`1[System.Boolean]",
+ "Message": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "CheckExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CheckViaIdentityExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzDigitalTwinsInstance",
+ "Name": "Update-AzDigitalTwinsInstance",
+ "ClassName": "Update-AzDigitalTwinsInstance",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateExpanded",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsDescription, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
+ "PublicNetworkAccess": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess]",
+ "CreatedTime": "System.Nullable`1[System.DateTime]",
+ "LastUpdatedTime": "System.Nullable`1[System.DateTime]",
+ "HostName": "System.String"
+ }
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PublicNetworkAccess",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "UpdateExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SubscriptionId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PublicNetworkAccess",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "UpdateViaIdentityExpanded",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "EndpointName": "System.String",
+ "Id": "System.String",
+ "Location": "System.String",
+ "PrivateEndpointConnectionName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ResourceId": "System.String",
+ "ResourceName": "System.String",
+ "SubscriptionId": "System.String",
+ "TimeSeriesDatabaseConnectionName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PublicNetworkAccess",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "IdentityType",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.DigitalTwinsIdentityType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PublicNetworkAccess",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzureRMContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Break",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelineAppend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HttpPipelinePrepend",
+ "Type": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Proxy",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Uri",
+ "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyCredential",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSCredential",
+ "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProxyUseDefaultCredentials",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "TypeDictionary": {
+ "System.String": {
+ "Name": "System.String"
+ },
+ "System.Boolean": {
+ "Name": "System.Boolean"
+ },
+ "System.Byte": {
+ "Name": "System.Byte"
+ },
+ "System.SByte": {
+ "Name": "System.SByte"
+ },
+ "System.Int16": {
+ "Name": "System.Int16"
+ },
+ "System.UInt16": {
+ "Name": "System.UInt16"
},
"System.Int32": {
- "Namespace": null,
- "Name": "System.Int32",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.Int32"
+ },
+ "System.UInt32": {
+ "Name": "System.UInt32"
+ },
+ "System.Int64": {
+ "Name": "System.Int64"
+ },
+ "System.UInt64": {
+ "Name": "System.UInt64"
+ },
+ "System.Single": {
+ "Name": "System.Single"
+ },
+ "System.Double": {
+ "Name": "System.Double"
+ },
+ "System.Decimal": {
+ "Name": "System.Decimal"
+ },
+ "System.Char": {
+ "Name": "System.Char"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Management.Automation.CompletionResult"
+ ]
+ },
+ "System.Management.Automation.CompletionResult": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.CompletionResult",
+ "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "System.Type": {
+ "Namespace": "System",
+ "Name": "System.Type",
+ "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.AuthenticationType"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[System.DateTime]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.DateTime]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ]
+ },
+ "System.DateTime": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Target": "System.Object",
+ "Method": "System.Reflection.MethodInfo"
+ },
+ "Methods": [
+ {
+ "Name": "Invoke",
+ "Parameters": [
+ {
+ "Name": "request",
+ "Type": "System.Net.Http.HttpRequestMessage"
+ },
+ {
+ "Name": "callback",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.IEventListener"
+ },
+ {
+ "Name": "next",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.ISendAsync"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]"
+ },
+ {
+ "Name": "BeginInvoke",
+ "Parameters": [
+ {
+ "Name": "request",
+ "Type": "System.Net.Http.HttpRequestMessage"
+ },
+ {
+ "Name": "callback",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.IEventListener"
+ },
+ {
+ "Name": "next",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.ISendAsync"
+ },
+ {
+ "Name": "__callback",
+ "Type": "System.AsyncCallback"
+ },
+ {
+ "Name": "object",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.IAsyncResult"
+ },
+ {
+ "Name": "EndInvoke",
+ "Parameters": [
+ {
+ "Name": "result",
+ "Type": "System.IAsyncResult"
+ }
+ ],
+ "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]"
+ },
+ {
+ "Name": "GetObjectData",
+ "Parameters": [
+ {
+ "Name": "info",
+ "Type": "System.Runtime.Serialization.SerializationInfo"
+ },
+ {
+ "Name": "context",
+ "Type": "System.Runtime.Serialization.StreamingContext"
+ }
+ ],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetInvocationList",
+ "ReturnType": "System.Delegate[]"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "Clone",
+ "ReturnType": "System.Object"
+ },
+ {
+ "Name": "DynamicInvoke",
+ "Parameters": [
+ {
+ "Name": "args",
+ "Type": "System.Object[]"
+ }
+ ],
+ "ReturnType": "System.Object"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "object",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "method",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
},
- "System.UInt32": {
- "Namespace": null,
- "Name": "System.UInt32",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.Object": {
+ "Namespace": "System",
+ "Name": "System.Object",
+ "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "System.Int64": {
- "Namespace": null,
- "Name": "System.Int64",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.Reflection.MethodInfo": {
+ "Namespace": "System.Reflection",
+ "Name": "System.Reflection.MethodInfo",
+ "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "System.UInt64": {
- "Namespace": null,
- "Name": "System.UInt64",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": {
+ "Namespace": "System.Threading.Tasks",
+ "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]",
+ "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Net.Http.HttpResponseMessage"
+ ]
},
- "System.Single": {
- "Namespace": null,
- "Name": "System.Single",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.Net.Http.HttpResponseMessage": {
+ "Namespace": "System.Net.Http",
+ "Name": "System.Net.Http.HttpResponseMessage",
+ "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
},
- "System.Double": {
- "Namespace": null,
- "Name": "System.Double",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.IAsyncResult": {
+ "Namespace": "System",
+ "Name": "System.IAsyncResult",
+ "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "System.Decimal": {
- "Namespace": null,
- "Name": "System.Decimal",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.Void": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "System.Delegate[]": {
+ "Namespace": "System",
+ "Name": "System.Delegate[]",
+ "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.Delegate"
+ },
+ "System.Delegate": {
+ "Namespace": "System",
+ "Name": "System.Delegate",
+ "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection[], Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection"
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IPrivateEndpointConnection, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState]",
+ "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "PrivateLinkServiceConnectionStateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus]",
+ "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]",
+ "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "PrivateEndpointId": "System.String",
+ "PrivateLinkServiceConnectionStateActionsRequired": "System.String",
+ "PrivateLinkServiceConnectionStateDescription": "System.String",
+ "SystemDataCreatedBy": "System.String",
+ "SystemDataLastModifiedBy": "System.String",
+ "Type": "System.String",
+ "GroupId": "System.String[]"
+ }
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ConnectionPropertiesProvisioningState"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
+ },
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType"
+ ]
+ },
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Methods": [
+ {
+ "Name": "CompleteArgument",
+ "Parameters": [
+ {
+ "Name": "commandName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "parameterName",
+ "Type": "System.String"
+ },
+ {
+ "Name": "wordToComplete",
+ "Type": "System.String"
+ },
+ {
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
+ },
+ {
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
+ }
+ ],
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.CreatedByType"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ }
+ ]
},
- "System.Char": {
- "Namespace": null,
- "Name": "System.Char",
- "AssemblyQualifiedName": null,
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus"
+ ]
},
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType": {
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -12147,7 +13534,7 @@
"Parameters": [
{
"Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointType"
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PrivateLinkServiceConnectionStatus"
}
],
"ReturnType": "System.Boolean"
@@ -12164,73 +13551,36 @@
},
{
"Name": "GetHashCode",
- "Parameters": [],
"ReturnType": "System.Int32"
},
{
"Name": "ToString",
- "Parameters": [],
"ReturnType": "System.String"
},
{
"Name": "GetType",
- "Parameters": [],
"ReturnType": "System.Type"
}
- ],
- "Constructors": []
- },
- "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Management.Automation.CompletionResult"
- ],
- "Methods": [],
- "Constructors": []
- },
- "System.Management.Automation.CompletionResult": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.CompletionResult",
- "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ ]
},
- "System.Type": {
+ "System.String[]": {
"Namespace": "System",
- "Name": "System.Type",
- "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
- "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]": {
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState"
- ],
- "Methods": [],
- "Constructors": []
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState"
+ ]
},
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState": {
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -12263,7 +13613,7 @@
"Parameters": [
{
"Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.EndpointProvisioningState"
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState"
}
],
"ReturnType": "System.Boolean"
@@ -12280,122 +13630,66 @@
},
{
"Name": "GetHashCode",
- "Parameters": [],
"ReturnType": "System.Int32"
},
{
"Name": "ToString",
- "Parameters": [],
"ReturnType": "System.String"
},
{
"Name": "GetType",
- "Parameters": [],
"ReturnType": "System.Type"
}
- ],
- "Constructors": []
+ ]
},
- "System.Nullable`1[System.DateTime]": {
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess]": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.DateTime]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
- "System.DateTime"
- ],
- "Methods": [],
- "Constructors": []
- },
- "System.DateTime": {
- "Namespace": "System",
- "Name": "System.DateTime",
- "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess"
+ ]
},
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.SendAsyncStep, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Target": "System.Object",
- "Method": "System.Reflection.MethodInfo"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess": {
+ "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
- "Name": "Invoke",
- "Parameters": [
- {
- "Name": "request",
- "Type": "System.Net.Http.HttpRequestMessage"
- },
- {
- "Name": "callback",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.IEventListener"
- },
- {
- "Name": "next",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.ISendAsync"
- }
- ],
- "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]"
- },
- {
- "Name": "BeginInvoke",
+ "Name": "CompleteArgument",
"Parameters": [
{
- "Name": "request",
- "Type": "System.Net.Http.HttpRequestMessage"
+ "Name": "commandName",
+ "Type": "System.String"
},
{
- "Name": "callback",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.IEventListener"
+ "Name": "parameterName",
+ "Type": "System.String"
},
{
- "Name": "next",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.ISendAsync"
+ "Name": "wordToComplete",
+ "Type": "System.String"
},
{
- "Name": "__callback",
- "Type": "System.AsyncCallback"
+ "Name": "commandAst",
+ "Type": "System.Management.Automation.Language.CommandAst"
},
{
- "Name": "object",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.IAsyncResult"
- },
- {
- "Name": "EndInvoke",
- "Parameters": [
- {
- "Name": "result",
- "Type": "System.IAsyncResult"
+ "Name": "fakeBoundParameters",
+ "Type": "System.Collections.IDictionary"
}
],
- "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]"
+ "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]"
},
{
- "Name": "GetObjectData",
+ "Name": "Equals",
"Parameters": [
{
- "Name": "info",
- "Type": "System.Runtime.Serialization.SerializationInfo"
- },
- {
- "Name": "context",
- "Type": "System.Runtime.Serialization.StreamingContext"
+ "Name": "e",
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.PublicNetworkAccess"
}
],
- "ReturnType": "System.Void"
+ "ReturnType": "System.Boolean"
},
{
"Name": "Equals",
@@ -12407,160 +13701,32 @@
],
"ReturnType": "System.Boolean"
},
- {
- "Name": "GetInvocationList",
- "Parameters": [],
- "ReturnType": "System.Delegate[]"
- },
{
"Name": "GetHashCode",
- "Parameters": [],
"ReturnType": "System.Int32"
},
{
- "Name": "Clone",
- "Parameters": [],
- "ReturnType": "System.Object"
- },
- {
- "Name": "DynamicInvoke",
- "Parameters": [
- {
- "Name": "args",
- "Type": "System.Object[]"
- }
- ],
- "ReturnType": "System.Object"
+ "Name": "ToString",
+ "ReturnType": "System.String"
},
{
"Name": "GetType",
- "Parameters": [],
"ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "Parameters": [
- {
- "Name": "object",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "method",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": null
}
]
},
- "System.Object": {
- "Namespace": "System",
- "Name": "System.Object",
- "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Reflection.MethodInfo": {
- "Namespace": "System.Reflection",
- "Name": "System.Reflection.MethodInfo",
- "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": {
- "Namespace": "System.Threading.Tasks",
- "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]",
- "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Net.Http.HttpResponseMessage"
- ],
- "Methods": [],
- "Constructors": []
- },
- "System.Net.Http.HttpResponseMessage": {
- "Namespace": "System.Net.Http",
- "Name": "System.Net.Http.HttpResponseMessage",
- "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.IAsyncResult": {
- "Namespace": "System",
- "Name": "System.IAsyncResult",
- "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Void": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Delegate[]": {
- "Namespace": "System",
- "Name": "System.Delegate[]",
- "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.Delegate",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Delegate": {
- "Namespace": "System",
- "Name": "System.Delegate",
- "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]": {
+ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]": {
"Namespace": "System",
- "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
+ "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState"
- ],
- "Methods": [],
- "Constructors": []
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState"
+ ]
},
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState": {
+ "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
+ "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -12593,7 +13759,7 @@
"Parameters": [
{
"Name": "e",
- "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.ProvisioningState"
+ "Type": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.TimeSeriesDatabaseConnectionState"
}
],
"ReturnType": "System.Boolean"
@@ -12610,109 +13776,30 @@
},
{
"Name": "GetHashCode",
- "Parameters": [],
"ReturnType": "System.Int32"
},
{
"Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": []
- },
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.ICheckNameRequest, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Name": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Item": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Runtime.Json.JsonNode"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
"ReturnType": "System.String"
},
{
"Name": "GetType",
- "Parameters": [],
"ReturnType": "System.Type"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
}
- ],
- "Constructors": []
- },
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.IDigitalTwinsIdentity, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "EndpointName": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "ResourceGroupName": "System.String",
- "ResourceName": "System.String",
- "SubscriptionId": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ ]
},
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason"
- ],
- "Methods": [],
- "Constructors": []
+ ]
},
"Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason",
"AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Support.Reason, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
"Methods": [
{
"Name": "CompleteArgument",
@@ -12762,43 +13849,25 @@
},
{
"Name": "GetHashCode",
- "Parameters": [],
"ReturnType": "System.Int32"
},
{
"Name": "ToString",
- "Parameters": [],
"ReturnType": "System.String"
},
{
"Name": "GetType",
- "Parameters": [],
"ReturnType": "System.Type"
}
- ],
- "Constructors": []
+ ]
},
"System.Nullable`1[System.Boolean]": {
"Namespace": "System",
"Name": "System.Nullable`1[System.Boolean]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
+ "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",
"GenericTypeArguments": [
"System.Boolean"
- ],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescriptionTags": {
- "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031",
- "Name": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescriptionTags",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsPatchDescriptionTags, Az.DigitalTwins.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ ]
}
}
-}
+}
\ No newline at end of file
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Monitor.json b/tools/Tools.Common/SerializedCmdlets/Az.Monitor.json
index 4839e7440589..f574d94699af 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Monitor.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Monitor.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Monitor",
- "ModuleVersion": "4.3.0",
+ "ModuleVersion": "4.4.0",
"Cmdlets": [
{
"VerbName": "Add",
@@ -16,7 +16,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.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]",
@@ -308,7 +308,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -364,7 +364,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -400,7 +400,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=4.2.1.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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator"
]
@@ -460,7 +460,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=4.2.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.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.RuleAction"
]
@@ -513,7 +513,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -573,7 +573,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=4.2.1.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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator"
]
@@ -669,7 +669,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=4.2.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.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.RuleAction"
]
@@ -725,7 +725,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -885,7 +885,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=4.2.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.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria"
]
@@ -909,7 +909,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup"
},
"ValidateNotNullOrEmpty": false
@@ -1051,7 +1051,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=4.2.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.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria"
]
@@ -1087,7 +1087,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup"
},
"ValidateNotNullOrEmpty": false
@@ -1279,7 +1279,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=4.2.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.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria"
]
@@ -1315,7 +1315,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup"
},
"ValidateNotNullOrEmpty": false
@@ -1541,7 +1541,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=4.2.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.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria"
]
@@ -1577,7 +1577,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup"
},
"ValidateNotNullOrEmpty": false
@@ -1692,7 +1692,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -1832,7 +1832,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=4.2.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.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.RuleAction"
]
@@ -2023,7 +2023,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=4.2.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.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.RuleAction"
]
@@ -2079,7 +2079,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2343,7 +2343,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -2538,7 +2538,7 @@
],
"ParameterSets": [
{
- "Name": "GetByCorrelationId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
@@ -2558,21 +2558,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
- {
- "ParameterMetadata": {
- "Name": "CorrelationId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "EndTime",
@@ -2680,38 +2665,38 @@
]
},
{
- "Name": "GetByResourceId",
+ "Name": "GetByCorrelationId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "StartTime",
+ "Name": "CorrelationId",
"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",
- "GenericTypeArguments": [
- "System.DateTime"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "StartTime",
"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",
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ]
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
@@ -2824,24 +2809,6 @@
{
"Name": "GetByResourceGroup",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "StartTime",
- "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",
- "GenericTypeArguments": [
- "System.DateTime"
- ]
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "ResourceGroupName",
@@ -2860,6 +2827,24 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "StartTime",
+ "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",
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "EndTime",
@@ -2967,38 +2952,38 @@
]
},
{
- "Name": "GetByResourceProvider",
+ "Name": "GetByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "StartTime",
+ "Name": "ResourceId",
"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",
- "GenericTypeArguments": [
- "System.DateTime"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceProvider",
+ "Name": "StartTime",
"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",
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ]
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
@@ -3109,29 +3094,26 @@
]
},
{
- "Name": "GetBySubscription",
+ "Name": "GetByResourceProvider",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "StartTime",
+ "Name": "ResourceProvider",
"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",
- "GenericTypeArguments": [
- "System.DateTime"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EndTime",
+ "Name": "StartTime",
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[System.DateTime]",
@@ -3147,97 +3129,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
- {
- "ParameterMetadata": {
- "Name": "Status",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Caller",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "DetailedOutput",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "MaxRecord",
- "Type": {
- "Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "EndTime",
@@ -3363,7 +3254,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -3661,7 +3552,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
"Action": "Microsoft.Azure.Management.Monitor.Models.RuleAction",
@@ -4055,7 +3946,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -4353,7 +4244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -4678,7 +4569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Description": "System.String",
"DataCollectionRuleId": "System.String",
@@ -4771,7 +4662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -5012,7 +4903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -5110,7 +5001,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -5437,7 +5328,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -5544,7 +5435,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -5678,7 +5569,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -5816,7 +5707,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Item": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
"Count": "System.Int32",
@@ -6477,7 +6368,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
"Data": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricValue]",
@@ -6551,7 +6442,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.AggregationType"
]
@@ -6613,7 +6504,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.ResultType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.ResultType, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.ResultType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.ResultType"
]
@@ -6837,7 +6728,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.AggregationType"
]
@@ -6935,7 +6826,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.ResultType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.ResultType, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.ResultType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.ResultType"
]
@@ -7086,7 +6977,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -7414,7 +7305,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.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]",
@@ -7643,7 +7534,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -9426,7 +9317,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomEmails": "System.Collections.Generic.IList`1[System.String]",
"SendToServiceOwners": "System.Nullable`1[System.Boolean]"
@@ -9595,7 +9486,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -9762,7 +9653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -10076,7 +9967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Description": "System.String",
"DataCollectionRuleId": "System.String",
@@ -10181,7 +10072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -10381,7 +10272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -10479,7 +10370,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -10786,7 +10677,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScopedResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Name": "System.String",
@@ -10893,7 +10784,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -11088,7 +10979,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -11164,7 +11055,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.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]",
@@ -11225,7 +11116,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType",
"FailingPeriods": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods",
@@ -11336,7 +11227,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension"
},
"ValidateNotNullOrEmpty": false
@@ -11539,7 +11430,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension"
},
"ValidateNotNullOrEmpty": false
@@ -11829,7 +11720,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension"
},
"ValidateNotNullOrEmpty": false
@@ -11959,7 +11850,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IncludeValues": "System.Collections.Generic.IList`1[System.String]",
"ExcludeValues": "System.Collections.Generic.IList`1[System.String]",
@@ -12384,7 +12275,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12549,7 +12440,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -12885,7 +12776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -13034,7 +12925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -13263,7 +13154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Description": "System.String",
"DataCollectionRuleId": "System.String",
@@ -13410,7 +13301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Description": "System.String",
"DataCollectionRuleId": "System.String",
@@ -13637,7 +13528,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -13787,7 +13678,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -13928,7 +13819,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -14062,7 +13953,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -14404,7 +14295,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -14653,7 +14544,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -14820,7 +14711,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14922,7 +14813,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=4.2.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.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase"
]
@@ -14974,7 +14865,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15077,7 +14968,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=4.2.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.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase"
]
@@ -15190,7 +15081,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=4.2.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.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase"
]
@@ -15367,7 +15258,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15474,7 +15365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -15594,7 +15485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -15894,7 +15785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -15978,6 +15869,258 @@
}
]
},
+ {
+ "VerbName": "Test",
+ "NounName": "AzActionGroup",
+ "Name": "Test-AzActionGroup",
+ "ClassName": "Microsoft.Azure.Commands.Insights.ActionGroups.TestAzureRmActionGroupCommand",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByPropertyName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
+ "Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSTestNotificationDetailsResponse",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSTestNotificationDetailsResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Context": "Microsoft.Azure.Management.Monitor.Models.Context",
+ "ActionDetails": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Management.Monitor.Models.ActionDetail]",
+ "CompletedTime": "System.DateTimeOffset",
+ "CreatedTime": "System.DateTimeOffset",
+ "State": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "actionGroupResource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "AlertType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ActionGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Receiver",
+ "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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByPropertyName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AlertType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ActionGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Receiver",
+ "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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase"
+ ]
+ },
+ "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]"
+ }
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
{
"VerbName": "Update",
"NounName": "AzDataCollectionRule",
@@ -15992,7 +16135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -16094,7 +16237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -16295,7 +16438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSources": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
"Destinations": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
@@ -16408,7 +16551,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -16500,7 +16643,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -16633,7 +16776,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMonitorPrivateLinkScope, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -20915,7 +21058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionCustomProperty": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties",
"CriterionAllOf": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
@@ -20985,7 +21128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"ResourceGroupName": "System.String",
@@ -21022,7 +21165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21032,7 +21175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21155,7 +21298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21171,7 +21314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21302,7 +21445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21318,7 +21461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21434,7 +21577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21450,7 +21593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21516,7 +21659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"ResourceGroupName": "System.String",
@@ -21571,7 +21714,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21587,7 +21730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21687,7 +21830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -21703,7 +21846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -27126,7 +27269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionCustomProperty": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties",
"CriterionAllOf": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
@@ -27241,7 +27384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"ValidateNotNullOrEmpty": false
@@ -27287,7 +27430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -27392,7 +27535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -27402,7 +27545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -27566,7 +27709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"ValidateNotNullOrEmpty": false
@@ -27642,7 +27785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -27813,7 +27956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -27829,7 +27972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -27902,7 +28045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Dimension": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]",
"Operator": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]",
@@ -28014,7 +28157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension"
},
"ValidateNotNullOrEmpty": false
@@ -28060,7 +28203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -28096,7 +28239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
}
@@ -28111,7 +28254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension"
},
"ValidateNotNullOrEmpty": false
@@ -28187,7 +28330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -28247,7 +28390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -28274,7 +28417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Operator": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator",
"Name": "System.String",
@@ -28388,7 +28531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -28428,7 +28571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -30758,7 +30901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"ResourceGroupName": "System.String",
@@ -30795,7 +30938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -30805,7 +30948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -30936,7 +31079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -30952,7 +31095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -31033,7 +31176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"ResourceGroupName": "System.String",
@@ -31088,7 +31231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -31104,7 +31247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -31219,7 +31362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -31235,7 +31378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -33583,7 +33726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionCustomProperty": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties",
"CriterionAllOf": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
@@ -33652,7 +33795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"ResourceGroupName": "System.String",
@@ -33704,7 +33847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"ValidateNotNullOrEmpty": false
@@ -33846,7 +33989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -33856,7 +33999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -34005,7 +34148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"ValidateNotNullOrEmpty": false
@@ -34237,7 +34380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -34253,7 +34396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -34319,7 +34462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"ResourceGroupName": "System.String",
@@ -34401,7 +34544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"ValidateNotNullOrEmpty": false
@@ -34633,7 +34776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -34649,7 +34792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -34776,7 +34919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"ValidateNotNullOrEmpty": false
@@ -35008,7 +35151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -35024,7 +35167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep"
},
"ValidateNotNullOrEmpty": false
@@ -35130,7 +35273,7 @@
"Microsoft.Azure.Management.Monitor.Models.RetentionPolicy": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RetentionPolicy, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"Days": "System.Int32"
@@ -35328,7 +35471,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
"Action": "Microsoft.Azure.Management.Monitor.Models.RuleAction",
@@ -35392,7 +35535,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSource": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource"
},
@@ -35438,7 +35581,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceUri": "System.String",
"LegacyResourceId": "System.String",
@@ -35487,7 +35630,7 @@
"Microsoft.Azure.Management.Monitor.Models.RuleDataSource": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.RuleDataSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RuleDataSource, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RuleDataSource, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceUri": "System.String",
"LegacyResourceId": "System.String",
@@ -35548,7 +35691,7 @@
"Microsoft.Azure.Management.Monitor.Models.RuleAction": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.RuleAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RuleAction, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RuleAction, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "GetType",
@@ -35582,7 +35725,7 @@
"Microsoft.Azure.Management.Monitor.Models.RuleCondition": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.RuleCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RuleCondition, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.RuleCondition, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataSource": "Microsoft.Azure.Management.Monitor.Models.RuleDataSource"
},
@@ -35628,7 +35771,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=4.2.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.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.RuleAction"
]
@@ -35636,7 +35779,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "GetType",
@@ -35670,7 +35813,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.RuleAction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.RuleAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.RuleAction, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.RuleAction, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.RuleAction"
]
@@ -35696,7 +35839,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -35788,13 +35931,13 @@
"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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup"
},
"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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ActionGroupId": "System.String"
@@ -35845,7 +35988,7 @@
"Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]"
},
@@ -35905,7 +36048,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=4.2.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.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria"
]
@@ -35913,7 +36056,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType"
}
@@ -35921,7 +36064,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36008,7 +36151,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricAlertAction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricAlertAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetricAlertAction, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.MetricAlertAction, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.MetricAlertAction"
]
@@ -36016,7 +36159,7 @@
"Microsoft.Azure.Management.Monitor.Models.MetricAlertAction": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.MetricAlertAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricAlertAction, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricAlertAction, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WebHookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ActionGroupId": "System.String"
@@ -36080,7 +36223,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=4.2.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.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver"
]
@@ -36088,7 +36231,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"RoleId": "System.String",
@@ -36136,7 +36279,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=4.2.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.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver"
]
@@ -36144,7 +36287,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsGlobalRunbook": "System.Boolean",
"UseCommonAlertSchema": "System.Boolean",
@@ -36196,7 +36339,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=4.2.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.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver"
]
@@ -36204,7 +36347,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EmailAddress": "System.String",
"Name": "System.String"
@@ -36251,7 +36394,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=4.2.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.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver"
]
@@ -36259,7 +36402,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"FunctionAppResourceId": "System.String",
@@ -36309,7 +36452,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=4.2.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.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver"
]
@@ -36317,7 +36460,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
@@ -36366,7 +36509,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=4.2.1.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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus"
]
@@ -36374,7 +36517,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -36461,7 +36604,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSEventHubReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver"
]
@@ -36469,7 +36612,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventHubReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"SubscriptionId": "System.String",
@@ -36519,7 +36662,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=4.2.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.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver"
]
@@ -36527,7 +36670,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WorkspaceId": "System.String",
"ConnectionId": "System.String",
@@ -36577,7 +36720,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=4.2.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.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver"
]
@@ -36585,7 +36728,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"ResourceId": "System.String",
@@ -36634,7 +36777,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=4.2.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.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver"
]
@@ -36642,7 +36785,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
"CountryCode": "System.String",
@@ -36691,7 +36834,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=4.2.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.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver"
]
@@ -36699,7 +36842,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CountryCode": "System.String",
"PhoneNumber": "System.String",
@@ -36747,7 +36890,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=4.2.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.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver"
]
@@ -36755,7 +36898,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"UseAadAuth": "System.Boolean",
@@ -36807,7 +36950,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Content": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
},
@@ -36860,7 +37003,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "System.String",
"Action": "System.String",
@@ -36900,7 +37043,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientId": "System.String",
"Method": "System.String",
@@ -36940,7 +37083,7 @@
"Microsoft.Azure.Management.Monitor.Models.EventLevel": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.EventLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.EventLevel, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.EventLevel, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -37027,7 +37170,7 @@
"Microsoft.Azure.Management.Monitor.Models.HttpRequestInfo": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.HttpRequestInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.HttpRequestInfo, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.HttpRequestInfo, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientRequestId": "System.String",
"ClientIpAddress": "System.String",
@@ -37088,7 +37231,7 @@
"Microsoft.Azure.Management.Monitor.Models.LocalizableString": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.LocalizableString, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.LocalizableString, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.String",
"LocalizedValue": "System.String"
@@ -37143,7 +37286,7 @@
"Microsoft.Azure.Management.Monitor.Models.SenderAuthorization": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.SenderAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.SenderAuthorization, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.SenderAuthorization, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "System.String",
"Role": "System.String",
@@ -37199,7 +37342,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.EventLevel]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.EventLevel]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.EventLevel, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.EventLevel, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.EventLevel"
]
@@ -37207,7 +37350,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource]",
"PerformanceCounters": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource]",
@@ -37256,7 +37399,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSExtensionDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource"
]
@@ -37264,7 +37407,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSExtensionDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Streams": "System.Collections.Generic.IList`1[System.String]",
"InputDataSources": "System.Collections.Generic.IList`1[System.String]",
@@ -37314,7 +37457,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSPerfCounterDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource"
]
@@ -37322,7 +37465,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSPerfCounterDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Streams": "System.Collections.Generic.IList`1[System.String]",
"CounterSpecifiers": "System.Collections.Generic.IList`1[System.String]",
@@ -37372,7 +37515,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSSyslogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource"
]
@@ -37380,7 +37523,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSyslogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Streams": "System.Collections.Generic.IList`1[System.String]",
"FacilityNames": "System.Collections.Generic.IList`1[System.String]",
@@ -37429,7 +37572,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSWindowsEventLogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource"
]
@@ -37437,7 +37580,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWindowsEventLogDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Streams": "System.Collections.Generic.IList`1[System.String]",
"XPathQueries": "System.Collections.Generic.IList`1[System.String]",
@@ -37486,7 +37629,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AzureMonitorMetrics": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDestinationsSpecAzureMonitorMetrics",
"LogAnalytics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination]"
@@ -37533,7 +37676,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSDestinationsSpecAzureMonitorMetrics": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDestinationsSpecAzureMonitorMetrics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDestinationsSpecAzureMonitorMetrics, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDestinationsSpecAzureMonitorMetrics, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -37579,7 +37722,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSLogAnalyticsDestination, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination"
]
@@ -37587,7 +37730,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogAnalyticsDestination, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WorkspaceResourceId": "System.String",
"Name": "System.String"
@@ -37634,7 +37777,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.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.Insights.OutputClasses.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow"
]
@@ -37642,7 +37785,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Streams": "System.Collections.Generic.IList`1[System.String]",
"Destinations": "System.Collections.Generic.IList`1[System.String]"
@@ -37689,7 +37832,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.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]",
@@ -37747,7 +37890,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=4.2.1.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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile"
]
@@ -37768,7 +37911,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=4.2.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.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile"
]
@@ -37776,7 +37919,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=4.2.1.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=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile"
]
@@ -37784,13 +37927,13 @@
"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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile"
},
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetricValue, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.MetricValue, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.MetricValue"
]
@@ -37798,7 +37941,7 @@
"Microsoft.Azure.Management.Monitor.Models.MetricValue": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.MetricValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricValue, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricValue, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TimeStamp": "System.DateTime",
"Average": "System.Nullable`1[System.Double]",
@@ -37881,7 +38024,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.TimeSeriesElement, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement"
]
@@ -37889,7 +38032,7 @@
"Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Metadatavalues": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetadataValue]",
"Data": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricValue]"
@@ -37940,7 +38083,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetadataValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetadataValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetadataValue, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.MetadataValue, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.MetadataValue"
]
@@ -37948,7 +38091,7 @@
"Microsoft.Azure.Management.Monitor.Models.MetadataValue": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.MetadataValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetadataValue, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetadataValue, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
"Value": "System.String"
@@ -38003,7 +38146,7 @@
"Microsoft.Azure.Management.Monitor.Models.AggregationType": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.AggregationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -38090,7 +38233,7 @@
"Microsoft.Azure.Management.Monitor.Models.ResultType": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.ResultType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.ResultType, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.ResultType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -38177,7 +38320,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LocalizableString]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LocalizableString]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.LocalizableString, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.LocalizableString, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.LocalizableString"
]
@@ -38185,7 +38328,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricAvailability]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricAvailability]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetricAvailability, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.MetricAvailability, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.MetricAvailability"
]
@@ -38193,7 +38336,7 @@
"Microsoft.Azure.Management.Monitor.Models.MetricAvailability": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.MetricAvailability",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricAvailability, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricAvailability, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TimeGrain": "System.Nullable`1[System.TimeSpan]",
"Retention": "System.Nullable`1[System.TimeSpan]"
@@ -38252,7 +38395,7 @@
"System.Collections.Generic.IList`1[System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]"
]
@@ -38260,7 +38403,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Models.AggregationType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.AggregationType, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.AggregationType"
]
@@ -38268,7 +38411,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricDimension]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.MetricDimension]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Models.MetricDimension, Microsoft.Azure.Management.Monitor, Version=0.26.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.Models.MetricDimension, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.Monitor.Models.MetricDimension"
]
@@ -38276,7 +38419,7 @@
"Microsoft.Azure.Management.Monitor.Models.MetricDimension": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.MetricDimension",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricDimension, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.MetricDimension, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Values": "System.Collections.Generic.IList`1[System.String]",
"OperatorProperty": "System.String",
@@ -38336,7 +38479,7 @@
"Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods": {
"Namespace": "Microsoft.Azure.Management.Monitor.Models",
"Name": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods, Microsoft.Azure.Management.Monitor, Version=0.26.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NumberOfEvaluationPeriods": "System.Double",
"MinFailingPeriodsToAlert": "System.Double"
@@ -38391,7 +38534,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IncludeValues": "System.Collections.Generic.IList`1[System.String]",
"ExcludeValues": "System.Collections.Generic.IList`1[System.String]",
@@ -38444,7 +38587,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=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -38473,6 +38616,141 @@
}
]
},
+ "Microsoft.Azure.Management.Monitor.Models.Context": {
+ "Namespace": "Microsoft.Azure.Management.Monitor.Models",
+ "Name": "Microsoft.Azure.Management.Monitor.Models.Context",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.Context, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "NotificationSource": "System.String",
+ "ContextType": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ },
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "notificationSource",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "contextType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Collections.Generic.ICollection`1[Microsoft.Azure.Management.Monitor.Models.ActionDetail]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.ICollection`1[Microsoft.Azure.Management.Monitor.Models.ActionDetail]",
+ "AssemblyQualifiedName": "System.Collections.Generic.ICollection`1[[Microsoft.Azure.Management.Monitor.Models.ActionDetail, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Management.Monitor.Models.ActionDetail"
+ ]
+ },
+ "Microsoft.Azure.Management.Monitor.Models.ActionDetail": {
+ "Namespace": "Microsoft.Azure.Management.Monitor.Models",
+ "Name": "Microsoft.Azure.Management.Monitor.Models.ActionDetail",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Models.ActionDetail, Microsoft.Azure.Management.Monitor, Version=0.28.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "MechanismType": "System.String",
+ "Name": "System.String",
+ "Status": "System.String",
+ "SubState": "System.String",
+ "SendTime": "System.String",
+ "Detail": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ },
+ {
+ "Name": "",
+ "Parameters": [
+ {
+ "Name": "mechanismType",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "status",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subState",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "sendTime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "detail",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.DateTimeOffset": {
+ "Namespace": "System",
+ "Name": "System.DateTimeOffset",
+ "AssemblyQualifiedName": "System.DateTimeOffset, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.Api20201001.IActionGroup[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.Api20201001",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.Api20201001.IActionGroup[]",
@@ -39837,18 +40115,18 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IActionsCustomProperties, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition"
},
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Dimension": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]",
"Operator": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]",
@@ -39865,13 +40143,13 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[], Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[], Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension"
},
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Operator": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator",
"Name": "System.String",
@@ -39881,7 +40159,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -39946,7 +40224,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator"
]
@@ -39954,7 +40232,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -40019,7 +40297,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation"
]
@@ -40027,7 +40305,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -40100,7 +40378,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType"
]
@@ -40108,7 +40386,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -40173,7 +40451,7 @@
"System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind"
]
@@ -40181,7 +40459,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "CompleteArgument",
@@ -40246,7 +40524,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.SendAsyncStep, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Target": "System.Object",
"Method": "System.Reflection.MethodInfo"
@@ -40497,7 +40775,7 @@
"Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.Json.JsonNode": {
"Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.Json",
"Name": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.Json.JsonNode",
- "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.Json.JsonNode, Az.ScheduledQueryRule.private, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.Json.JsonNode, Az.ScheduledQueryRule.private, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Item": "Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.Json.JsonNode"
},
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.NetAppFiles.json b/tools/Tools.Common/SerializedCmdlets/Az.NetAppFiles.json
index 5d63c98bf3dd..409970d841b6 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.NetAppFiles.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.NetAppFiles.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.NetAppFiles",
- "ModuleVersion": "0.10.0",
+ "ModuleVersion": "0.11.0",
"Cmdlets": [
{
"VerbName": "Approve",
@@ -86,56 +86,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -365,56 +373,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -532,10 +548,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -793,7 +812,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
"Administrators": "System.Collections.Generic.IList`1[System.String]",
@@ -891,10 +910,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -1066,10 +1088,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -1149,7 +1174,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -1272,56 +1297,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -1624,56 +1657,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -1812,7 +1853,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -1911,10 +1952,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -2150,10 +2194,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -2236,7 +2283,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -2336,10 +2383,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -2508,10 +2558,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -2607,7 +2660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSubscriptionQuotaLimit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSubscriptionQuotaLimit, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSubscriptionQuotaLimit, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Current": "System.Nullable`1[System.Int32]",
"Default": "System.Nullable`1[System.Int32]",
@@ -2824,7 +2877,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Healthy": "System.Nullable`1[System.Boolean]",
"RelationshipStatus": "System.String",
@@ -2921,56 +2974,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -3146,56 +3207,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -3283,7 +3352,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -3392,56 +3461,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -3699,56 +3776,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -3823,7 +3908,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -3921,10 +4006,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -4093,10 +4181,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -4192,56 +4283,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
},
"Methods": [
{
@@ -4341,56 +4440,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -4648,56 +4755,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -4769,56 +4884,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
},
"Methods": [
{
@@ -4918,56 +5041,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -5225,56 +5356,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -5349,7 +5488,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -5427,10 +5566,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -5544,10 +5686,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -5686,56 +5831,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
},
"Methods": [
{
@@ -5826,7 +5979,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -6020,7 +6173,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -6126,7 +6279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Healthy": "System.Nullable`1[System.Boolean]",
"LastTransferSize": "System.Nullable`1[System.Int64]",
@@ -6226,7 +6379,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -6254,56 +6407,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -6479,7 +6640,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -6544,56 +6705,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -6681,10 +6850,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GroupMetaData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData",
- "Volumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties]",
+ "Volumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Id": "System.String",
@@ -6772,10 +6941,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -7011,10 +7183,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -7085,9 +7260,9 @@
},
{
"VerbName": "Get",
- "NounName": "AzNetAppFilesVolumeRestoreStatus",
- "Name": "Get-AzNetAppFilesVolumeRestoreStatus",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.GetAzureRmNetAppFilesVolumeRestoreStatus",
+ "NounName": "AzNetAppFilesVolumeQuotaRule",
+ "Name": "Get-AzNetAppFilesVolumeQuotaRule",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.GetAzureRmNetAppFilesVolumeQuotaRule",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -7096,15 +7271,65 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
- "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRestoreStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Healthy": "System.Nullable`1[System.Boolean]",
- "TotalTransferBytes": "System.Nullable`1[System.Int64]",
- "RelationshipStatus": "System.String",
- "MirrorState": "System.String",
- "UnhealthyReason": "System.String",
- "ErrorMessage": "System.String"
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
},
"Methods": [
{
@@ -7170,10 +7395,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "VolumeName"
- ],
+ "Name": "VolumeName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -7182,7 +7404,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -7191,88 +7416,77 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolObject",
+ "Name": "ResourceId",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
- "Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
- "Location": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -7347,11 +7561,26 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "VolumeName"
+ "SubvolumeName"
],
"Type": {
"Namespace": "System",
@@ -7360,7 +7589,7 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -7394,11 +7623,14 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -7406,10 +7638,10 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -7440,40 +7672,39 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "ByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "PoolObject",
+ "Name": "ResourceId",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
- "Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
- "Location": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -7505,64 +7736,72 @@
]
},
{
- "Name": "ByObjectParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -7574,35 +7813,22 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "Name",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "SubvolumeName"
],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7633,24 +7859,111 @@
}
],
"AliasList": [
- "Get-AnfVolumeRestoreStatus"
+ "Get-AnfVolumeQuotaRule"
]
},
{
- "VerbName": "Initialize",
- "NounName": "AzNetAppFilesReplication",
- "Name": "Initialize-AzNetAppFilesReplication",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.InitializeAzureRmNetAppFilesReplication",
- "SupportsShouldProcess": true,
+ "VerbName": "Get",
+ "NounName": "AzNetAppFilesVolumeReplication",
+ "Name": "Get-AzNetAppFilesVolumeReplication",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.GetNetAppFilesVolumeReplications",
+ "SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
"DefaultParameterSetName": "ByFieldsParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -7707,73 +8020,33 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "PoolObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
"ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
"ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
"Name": "System.String",
"Id": "System.String",
+ "QosType": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -7862,21 +8135,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7923,21 +8181,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
- {
- "ParameterMetadata": {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -7967,64 +8210,33 @@
]
},
{
- "Name": "ByObjectParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "PoolObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
"ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
"ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
"Name": "System.String",
"Id": "System.String",
+ "QosType": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -8034,21 +8246,6 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -8080,21 +8277,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -8125,15 +8307,15 @@
}
],
"AliasList": [
- "Initialize-AnfReplication"
+ "Get-AnfVolumeReplication"
]
},
{
- "VerbName": "New",
- "NounName": "AzNetAppFilesAccount",
- "Name": "New-AzNetAppFilesAccount",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.NewAzureRmNetAppFilesAccount",
- "SupportsShouldProcess": true,
+ "VerbName": "Get",
+ "NounName": "AzNetAppFilesVolumeRestoreStatus",
+ "Name": "Get-AzNetAppFilesVolumeRestoreStatus",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.GetAzureRmNetAppFilesVolumeRestoreStatus",
+ "SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
"DefaultParameterSetName": "ByFieldsParameterSet",
@@ -8141,19 +8323,15 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRestoreStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeRestoreStatus, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
+ "Healthy": "System.Nullable`1[System.Boolean]",
+ "TotalTransferBytes": "System.Nullable`1[System.Int64]",
+ "RelationshipStatus": "System.String",
+ "MirrorState": "System.String",
+ "UnhealthyReason": "System.String",
+ "ErrorMessage": "System.String"
},
"Methods": [
{
@@ -8201,7 +8379,16 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Location",
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8212,7 +8399,7 @@
{
"Name": "Name",
"AliasList": [
- "AccountName"
+ "VolumeName"
],
"Type": {
"Namespace": "System",
@@ -8222,30 +8409,112 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ActiveDirectory",
+ "Name": "ResourceId",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PoolObject",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DefaultProfile",
- "AliasList": [
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
"AzContext",
"AzureRmContext",
"AzureCredential"
@@ -8285,7 +8554,7 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8300,10 +8569,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8318,37 +8584,67 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveDirectory",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "DefaultProfile",
"AliasList": [
- "Tags"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -8379,75 +8675,177 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "PoolObject",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DefaultProfile",
"AliasList": [
- "AccountName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"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.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ActiveDirectory",
+ "Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "DefaultProfile",
"AliasList": [
- "Tags"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -8478,14 +8876,14 @@
}
],
"AliasList": [
- "New-AnfAccount"
+ "Get-AnfVolumeRestoreStatus"
]
},
{
- "VerbName": "New",
- "NounName": "AzNetAppFilesActiveDirectory",
- "Name": "New-AzNetAppFilesActiveDirectory",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.NewAzureRmNetAppFilesActiceDirectory",
+ "VerbName": "Initialize",
+ "NounName": "AzNetAppFilesReplication",
+ "Name": "Initialize-AzNetAppFilesReplication",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.InitializeAzureRmNetAppFilesReplication",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -8493,64 +8891,9 @@
"OutputTypes": [
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
- "Administrators": "System.Collections.Generic.IList`1[System.String]",
- "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
- "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
- "LdapOverTLS": "System.Nullable`1[System.Boolean]",
- "LdapSigning": "System.Nullable`1[System.Boolean]",
- "AesEncryption": "System.Nullable`1[System.Boolean]",
- "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
- "ServerRootCACertificate": "System.String",
- "AdName": "System.String",
- "KdcIP": "System.String",
- "Site": "System.String",
- "SmbServerName": "System.String",
- "StatusDetails": "System.String",
- "Status": "System.String",
- "Dns": "System.String",
- "Domain": "System.String",
- "Password": "System.String",
- "Username": "System.String",
- "ActiveDirectoryId": "System.String",
- "AccountName": "System.String",
- "OrganizationalUnit": "System.String",
- "ResourceGroupName": "System.String"
- },
- "Methods": [
- {
- "Name": "GetType",
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": ""
- }
- ]
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ParameterSets": [
"__AllParameterSets"
@@ -8577,71 +8920,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Dns",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Domain",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Site",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SmbServerName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Username",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Password",
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OrganizationalUnit",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "KdcIP",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8650,17 +8929,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "BackupOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ServerRootCACertificate",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8669,7 +8941,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AdName",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8678,113 +8950,103 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "SecurityOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AesEncryption",
+ "Name": "InputObject",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "LdapSigning",
+ "Name": "PassThru",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "LdapOverTLS",
+ "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=7.0.6.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": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AllowLocalNfsUsersWithLdap",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Administrator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "EncryptDCConnection",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AccountObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
- }
- },
- "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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
{
"Name": "ByFieldsParameterSet",
"Parameters": [
@@ -8820,23 +9082,25 @@
},
{
"ParameterMetadata": {
- "Name": "Dns",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Domain",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8851,13 +9115,13 @@
},
{
"ParameterMetadata": {
- "Name": "Site",
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -8866,22 +9130,38 @@
},
{
"ParameterMetadata": {
- "Name": "SmbServerName",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Username",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -8889,20 +9169,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Password",
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -8911,44 +9191,117 @@
},
{
"ParameterMetadata": {
- "Name": "OrganizationalUnit",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "KdcIP",
+ "Name": "InputObject",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "BackupOperator",
+ "Name": "PassThru",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -8957,28 +9310,44 @@
},
{
"ParameterMetadata": {
- "Name": "ServerRootCACertificate",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "AdName",
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -8987,72 +9356,250 @@
},
{
"ParameterMetadata": {
- "Name": "SecurityOperator",
+ "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",
- "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]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Initialize-AnfReplication"
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzNetAppFilesAccount",
+ "Name": "New-AzNetAppFilesAccount",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.NewAzureRmNetAppFilesAccount",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
},
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ActiveDirectory",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Encryption",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity",
+ "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties",
+ "KeySource": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "AesEncryption",
+ "Name": "ResourceGroupName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LdapSigning",
+ "Name": "Location",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LdapOverTLS",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AllowLocalNfsUsersWithLdap",
+ "Name": "ActiveDirectory",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
},
"ValidateNotNullOrEmpty": true
},
@@ -9063,12 +9610,16 @@
},
{
"ParameterMetadata": {
- "Name": "Administrator",
+ "Name": "Encryption",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity",
+ "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties",
+ "KeySource": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
@@ -9079,11 +9630,14 @@
},
{
"ParameterMetadata": {
- "Name": "EncryptDCConnection",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -9125,7 +9679,467 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Dns",
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ActiveDirectory",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Encryption",
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity",
+ "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties",
+ "KeySource": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "New-AnfAccount"
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzNetAppFilesActiveDirectory",
+ "Name": "New-AzNetAppFilesActiveDirectory",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.NewAzureRmNetAppFilesActiceDirectory",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
+ "Administrators": "System.Collections.Generic.IList`1[System.String]",
+ "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
+ "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
+ "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
+ "LdapOverTLS": "System.Nullable`1[System.Boolean]",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
+ "Status": "System.String",
+ "Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
+ "OrganizationalUnit": "System.String",
+ "ResourceGroupName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Dns",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Domain",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Site",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SmbServerName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Username",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Password",
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "OrganizationalUnit",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "KdcIP",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "BackupOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ServerRootCACertificate",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AdName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SecurityOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AesEncryption",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LdapSigning",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LdapOverTLS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AllowLocalNfsUsersWithLdap",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Administrator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "EncryptDCConnection",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Dns",
"Type": {
"Namespace": "System",
"Name": "System.String[]",
@@ -9426,35 +10440,8 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "AccountObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Dns",
@@ -9756,42 +10743,377 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ]
- },
- {
- "VerbName": "New",
- "NounName": "AzNetAppFilesBackup",
- "Name": "New-AzNetAppFilesBackup",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.NewAzureRmNetAppFilesBackup",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByFieldsParameterSet",
- "OutputTypes": [
+ },
{
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "Size": "System.Nullable`1[System.Int64]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "BackupId": "System.String",
- "Label": "System.String",
- "BackupType": "System.String",
- "ProvisioningState": "System.String",
- "VolumeName": "System.String"
- },
- "Methods": [
- {
- "Name": "GetType",
+ "Name": "ByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AccountObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Dns",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Domain",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Site",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbServerName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Username",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Password",
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OrganizationalUnit",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KdcIP",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "BackupOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServerRootCACertificate",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecurityOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AesEncryption",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LdapSigning",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LdapOverTLS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AllowLocalNfsUsersWithLdap",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Administrator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EncryptDCConnection",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzNetAppFilesBackup",
+ "Name": "New-AzNetAppFilesBackup",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.NewAzureRmNetAppFilesBackup",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
"ReturnType": "System.Type"
},
{
@@ -9905,56 +11227,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -10223,56 +11553,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -10377,7 +11715,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -10545,10 +11883,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -10945,10 +12286,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -11136,7 +12480,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -11181,7 +12525,7 @@
"Type": {
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule"
},
"ValidateNotNullOrEmpty": true
@@ -11217,7 +12561,7 @@
"Type": {
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule"
},
"ValidateNotNullOrEmpty": true
@@ -11302,7 +12646,7 @@
"Type": {
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UnixReadOnly": "System.Nullable`1[System.Boolean]",
"UnixReadWrite": "System.Nullable`1[System.Boolean]",
@@ -11816,7 +13160,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -11973,10 +13317,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -12349,10 +13696,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -12528,7 +13878,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -12658,56 +14008,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -12967,56 +14325,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -13109,7 +14475,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -13216,7 +14582,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -13230,7 +14596,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13245,7 +14611,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13261,7 +14627,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13289,10 +14655,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -13414,7 +14783,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -13434,7 +14803,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13455,7 +14824,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13477,7 +14846,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13581,7 +14950,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -13601,7 +14970,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13622,7 +14991,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13644,7 +15013,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13715,10 +15084,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -13775,7 +15147,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -13795,7 +15167,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13816,7 +15188,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13838,7 +15210,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -13919,7 +15291,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -14063,56 +15435,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -14417,56 +15797,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -14589,56 +15977,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
},
"Methods": [
{
@@ -14783,7 +16179,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -14795,7 +16191,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -14811,7 +16207,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
}
@@ -14832,7 +16228,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -15043,7 +16439,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.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.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs"
]
@@ -15059,6 +16455,61 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "Zone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EncryptionKeySource",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "KeyVaultPrivateEndpointResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DeleteBaseSnapshot",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SmbAccessBasedEnumeration",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SmbNonBrowsable",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "Tag",
"AliasList": [
@@ -15076,7 +16527,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -15313,7 +16764,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -15331,7 +16782,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -15353,7 +16804,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
}
@@ -15386,7 +16837,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -15708,7 +17159,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.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.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs"
]
@@ -15735,6 +17186,97 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Zone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EncryptionKeySource",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyVaultPrivateEndpointResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeleteBaseSnapshot",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbAccessBasedEnumeration",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbNonBrowsable",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -15853,7 +17395,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -15871,7 +17413,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -15893,7 +17435,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
}
@@ -15926,7 +17468,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -16248,7 +17790,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.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.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs"
]
@@ -16275,6 +17817,97 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Zone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EncryptionKeySource",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyVaultPrivateEndpointResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeleteBaseSnapshot",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbAccessBasedEnumeration",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbNonBrowsable",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -16345,7 +17978,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -16442,7 +18075,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -16460,7 +18093,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -16482,7 +18115,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
}
@@ -16515,7 +18148,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -16837,7 +18470,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.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.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs"
]
@@ -16864,6 +18497,97 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Zone",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EncryptionKeySource",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KeyVaultPrivateEndpointResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeleteBaseSnapshot",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbAccessBasedEnumeration",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SmbNonBrowsable",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -16929,10 +18653,10 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupDetail, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GroupMetaData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData",
- "Volumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties]",
+ "Volumes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Id": "System.String",
@@ -17285,7 +19009,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -17297,7 +19021,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.Management.NetApp, Version=1.16.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.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs"
]
@@ -17321,10 +19045,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -17852,7 +19579,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -17870,7 +19597,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.Management.NetApp, Version=1.16.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.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs"
]
@@ -18376,7 +20103,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -18394,7 +20121,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.Management.NetApp, Version=1.16.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.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs"
]
@@ -18461,10 +20188,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -18927,7 +20657,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -18945,7 +20675,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.Management.NetApp, Version=1.16.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.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs"
]
@@ -19009,10 +20739,10 @@
]
},
{
- "VerbName": "Remove",
- "NounName": "AzNetAppFilesAccount",
- "Name": "Remove-AzNetAppFilesAccount",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.RemoveAzureRmNetAppFilesAccount",
+ "VerbName": "New",
+ "NounName": "AzNetAppFilesVolumeQuotaRule",
+ "Name": "New-AzNetAppFilesVolumeQuotaRule",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.NewAzureRmNetAppFilesVolumeQuotaRule",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -19020,9 +20750,53 @@
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -19039,10 +20813,46 @@
},
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "Name",
"AliasList": [
- "AccountName"
+ "VolumeQuotaRuleName"
],
"Type": {
"Namespace": "System",
@@ -19052,7 +20862,28 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "QuotaSize",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "QuotaType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -19061,35 +20892,81 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "QuotaTarget",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -19130,11 +21007,71 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "AccountName"
+ "VolumeQuotaRuleName"
],
"Type": {
"Namespace": "System",
@@ -19150,13 +21087,61 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaSize",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaTarget",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -19192,11 +21177,14 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeQuotaRuleName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -19207,17 +21195,65 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaSize",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaTarget",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -19253,26 +21289,72 @@
]
},
{
- "Name": "ByObjectParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -19284,59 +21366,79 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeQuotaRuleName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "QuotaSize",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaTarget",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -19373,14 +21475,14 @@
}
],
"AliasList": [
- "Remove-AnfAccount"
+ "New-AnfVolumeQuotaRule"
]
},
{
"VerbName": "Remove",
- "NounName": "AzNetAppFilesActiveDirectory",
- "Name": "Remove-AzNetAppFilesActiveDirectory",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory.RemoveAzureRmNetAppFilesActiveDirectory",
+ "NounName": "AzNetAppFilesAccount",
+ "Name": "Remove-AzNetAppFilesAccount",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.RemoveAzureRmNetAppFilesAccount",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -19388,34 +21490,408 @@
"OutputTypes": [
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
- "Administrators": "System.Collections.Generic.IList`1[System.String]",
- "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
- "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
- "LdapOverTLS": "System.Nullable`1[System.Boolean]",
- "LdapSigning": "System.Nullable`1[System.Boolean]",
- "AesEncryption": "System.Nullable`1[System.Boolean]",
- "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
- "ServerRootCACertificate": "System.String",
- "AdName": "System.String",
- "KdcIP": "System.String",
- "Site": "System.String",
- "SmbServerName": "System.String",
- "StatusDetails": "System.String",
- "Status": "System.String",
- "Dns": "System.String",
- "Domain": "System.String",
- "Password": "System.String",
- "Username": "System.String",
- "ActiveDirectoryId": "System.String",
- "AccountName": "System.String",
- "OrganizationalUnit": "System.String",
- "ResourceGroupName": "System.String"
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Remove-AnfAccount"
+ ]
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzNetAppFilesActiveDirectory",
+ "Name": "Remove-AzNetAppFilesActiveDirectory",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory.RemoveAzureRmNetAppFilesActiveDirectory",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
+ "Administrators": "System.Collections.Generic.IList`1[System.String]",
+ "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
+ "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
+ "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
+ "LdapOverTLS": "System.Nullable`1[System.Boolean]",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
+ "Status": "System.String",
+ "Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
+ "OrganizationalUnit": "System.String",
+ "ResourceGroupName": "System.String"
},
"Methods": [
{
@@ -19485,10 +21961,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -19506,7 +21985,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
"Administrators": "System.Collections.Generic.IList`1[System.String]",
@@ -19682,10 +22161,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -19755,7 +22237,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
"Administrators": "System.Collections.Generic.IList`1[System.String]",
@@ -19898,7 +22380,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -20024,56 +22506,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -20083,7 +22573,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -20375,56 +22865,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -20547,7 +23045,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -20679,7 +23177,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -20769,10 +23267,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -20799,7 +23300,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -20973,10 +23474,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -21107,7 +23611,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -21294,10 +23798,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -21315,7 +23822,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -21490,10 +23997,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -21624,7 +24134,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -21821,56 +24331,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -22085,56 +24603,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -22322,56 +24848,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -22381,7 +24915,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -22620,56 +25154,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -22731,7 +25273,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
@@ -22858,7 +25400,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -22956,10 +25498,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -22977,7 +25522,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -23150,10 +25695,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -23284,7 +25832,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
"HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
@@ -23418,7 +25966,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -23535,56 +26083,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -23594,7 +26150,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -23920,56 +26476,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -24049,7 +26613,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -24223,7 +26787,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -24251,56 +26815,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -24487,7 +27059,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -24719,56 +27291,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -24907,10 +27487,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -24928,7 +27511,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -25227,10 +27810,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -25318,7 +27904,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
@@ -25412,10 +27998,10 @@
]
},
{
- "VerbName": "Restore",
- "NounName": "AzNetAppFilesSnapshotFile",
- "Name": "Restore-AzNetAppFilesSnapshotFile",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Snapshot.RestoreAzureRmNetAppFilesSnapshotFiles",
+ "VerbName": "Remove",
+ "NounName": "AzNetAppFilesVolumeQuotaRule",
+ "Name": "Remove-AzNetAppFilesVolumeQuotaRule",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.RemoveAzureRmNetAppFilesVolumeQuotaRule",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -25423,48 +28009,9 @@
"OutputTypes": [
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Created": "System.Nullable`1[System.DateTime]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "SnapshotId": "System.String",
- "ProvisioningState": "System.String"
- },
- "Methods": [
- {
- "Name": "GetType",
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": ""
- }
- ]
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ParameterSets": [
"__AllParameterSets"
@@ -25511,7 +28058,7 @@
{
"Name": "Name",
"AliasList": [
- "SnapshotName"
+ "VolumeGroupName"
],
"Type": {
"Namespace": "System",
@@ -25520,25 +28067,6 @@
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "FilePath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DestinationPath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
{
"Name": "ResourceId",
"Type": {
@@ -25553,56 +28081,91 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
"Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "BackupPolicyId": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -25696,7 +28259,7 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -25705,7 +28268,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotName"
+ "VolumeGroupName"
],
"Type": {
"Namespace": "System",
@@ -25719,37 +28282,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "FilePath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DestinationPath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -25800,7 +28332,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotName"
+ "VolumeGroupName"
],
"Type": {
"Namespace": "System",
@@ -25814,37 +28346,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "FilePath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DestinationPath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -25910,7 +28411,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotName"
+ "VolumeGroupName"
],
"Type": {
"Namespace": "System",
@@ -25924,37 +28425,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "FilePath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DestinationPath",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -26007,56 +28477,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -26070,7 +28548,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotName"
+ "VolumeGroupName"
],
"Type": {
"Namespace": "System",
@@ -26086,23 +28564,89 @@
},
{
"ParameterMetadata": {
- "Name": "FilePath",
+ "Name": "PassThru",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "BackupPolicyId": "System.String",
+ "ProvisioningState": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DestinationPath",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeGroupName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -26158,13 +28702,16 @@
}
]
}
+ ],
+ "AliasList": [
+ "Remove-AnfVolumeQuotaRule"
]
},
{
- "VerbName": "Restore",
- "NounName": "AzNetAppFilesVolume",
- "Name": "Restore-AzNetAppFilesVolume",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.RevertAzureRmNetAppFilesVolume",
+ "VerbName": "Reset",
+ "NounName": "AzNetAppFilesVolumeCifsPassword",
+ "Name": "Reset-AzNetAppFilesVolumeCifsPassword",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.ResetAzureRmNetAppFilesVolumeCifsPassword",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -26221,15 +28768,6 @@
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "SnapshotId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
{
"Name": "ResourceId",
"Type": {
@@ -26244,7 +28782,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -26272,56 +28810,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -26423,21 +28969,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "SnapshotId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -26508,7 +29039,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"CoolAccess": "System.Nullable`1[System.Boolean]",
@@ -26649,56 +29180,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -26799,14 +29338,14 @@
}
],
"AliasList": [
- "Restore-AnfVolume"
+ "Reset-AnfVolumeCifsPassword"
]
},
{
- "VerbName": "Resume",
+ "VerbName": "Restore",
"NounName": "AzNetAppFilesReplication",
- "Name": "Resume-AzNetAppFilesReplication",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.ResyncAzureRmNetAppFilesReplication",
+ "Name": "Restore-AzNetAppFilesReplication",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.ReestablishAzureRmNetAppFilesReplication",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -26863,6 +29402,15 @@
},
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "SourceVolumeId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "ResourceId",
"Type": {
@@ -26877,56 +29425,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -27028,6 +29584,82 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "SourceVolumeId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SourceVolumeId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -27089,6 +29721,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "SourceVolumeId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -27141,56 +29788,64 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -27202,50 +29857,19 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "SourceVolumeId",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
- "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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -27291,14 +29915,14 @@
}
],
"AliasList": [
- "Resume-AnfReplication"
+ "Restore-AnfReplication"
]
},
{
- "VerbName": "Set",
- "NounName": "AzNetAppFilesAccount",
- "Name": "Set-AzNetAppFilesAccount",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.SetAzureRmNetAppFilesAccount",
+ "VerbName": "Restore",
+ "NounName": "AzNetAppFilesSnapshotFile",
+ "Name": "Restore-AzNetAppFilesSnapshotFile",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Snapshot.RestoreAzureRmNetAppFilesSnapshotFiles",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -27307,18 +29931,16 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
+ "Created": "System.Nullable`1[System.DateTime]",
"ResourceGroupName": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
- "Etag": "System.String",
+ "SnapshotId": "System.String",
"ProvisioningState": "System.String"
},
"Methods": [
@@ -27367,7 +29989,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Location",
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27378,7 +30018,7 @@
{
"Name": "Name",
"AliasList": [
- "AccountName"
+ "SnapshotName"
],
"Type": {
"Namespace": "System",
@@ -27388,24 +30028,21 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ActiveDirectory",
+ "Name": "FilePath",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "DestinationPath",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -27418,6 +30055,82 @@
},
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "VolumeObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -27460,7 +30173,37 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27477,7 +30220,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "AccountName"
+ "SnapshotName"
],
"Type": {
"Namespace": "System",
@@ -27486,6 +30229,22 @@
},
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FilePath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -27493,14 +30252,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "DestinationPath",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -27509,6 +30265,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -27542,7 +30313,10 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27550,6 +30324,22 @@
},
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FilePath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -27557,10 +30347,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "DestinationPath",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27568,23 +30355,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -27620,27 +30404,29 @@
]
},
{
- "Name": "SetByResourceActiveDirectory",
+ "Name": "ByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ActiveDirectory",
+ "Name": "ResourceId",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27648,6 +30434,22 @@
},
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FilePath",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -27655,10 +30457,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "DestinationPath",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27666,23 +30465,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -27718,11 +30514,87 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "VolumeObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27730,18 +30602,19 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "FilePath",
"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",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -27752,10 +30625,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "DestinationPath",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27763,23 +30633,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -27814,16 +30681,13 @@
}
]
}
- ],
- "AliasList": [
- "Set-AnfAccount"
]
},
{
- "VerbName": "Set",
- "NounName": "AzNetAppFilesBackupPolicy",
- "Name": "Set-AzNetAppFilesBackupPolicy",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.SetAzureRmNetAppFilesBackupPolicy",
+ "VerbName": "Restore",
+ "NounName": "AzNetAppFilesVolume",
+ "Name": "Restore-AzNetAppFilesVolume",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.RevertAzureRmNetAppFilesVolume",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -27831,56 +30695,9 @@
"OutputTypes": [
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "VolumesAssigned": "System.Nullable`1[System.Int32]",
- "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "BackupPolicyId": "System.String",
- "ProvisioningState": "System.String"
- },
- "Methods": [
- {
- "Name": "GetType",
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": ""
- }
- ]
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ParameterSets": [
"__AllParameterSets"
@@ -27898,7 +30715,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Location",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27907,7 +30724,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountName",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -27918,7 +30735,7 @@
{
"Name": "Name",
"AliasList": [
- "BackupPolicyName"
+ "VolumeName"
],
"Type": {
"Namespace": "System",
@@ -27928,103 +30745,126 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Enabled",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DailyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "WeeklyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "SnapshotId",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "YearlyBackupsToKeep",
+ "Name": "ResourceId",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PoolObject",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountObject",
+ "Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -28068,7 +30908,7 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -28083,7 +30923,7 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -28100,7 +30940,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "BackupPolicyName"
+ "VolumeName"
],
"Type": {
"Namespace": "System",
@@ -28116,83 +30956,11 @@
},
{
"ParameterMetadata": {
- "Name": "Enabled",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "SnapshotId",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -28203,16 +30971,13 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28248,13 +31013,13 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "BackupPolicyName"
+ "VolumeName"
],
"Type": {
"Namespace": "System",
@@ -28270,49 +31035,47 @@
},
{
"ParameterMetadata": {
- "Name": "Enabled",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "PoolObject",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "PassThru",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28321,52 +31084,59 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "ResourceId",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28402,26 +31172,72 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "ByObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "AccountObject",
+ "Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -28433,49 +31249,59 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Enabled",
+ "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=7.0.6.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": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "PassThru",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28484,71 +31310,281 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
- "Type": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Restore-AnfVolume"
+ ]
+ },
+ {
+ "VerbName": "Resume",
+ "NounName": "AzNetAppFilesReplication",
+ "Name": "Resume-AzNetAppFilesReplication",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.ResyncAzureRmNetAppFilesReplication",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "AccountName",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "PoolName",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Name",
"AliasList": [
- "Tags"
+ "VolumeName"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -28602,31 +31638,13 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Enabled",
+ "Name": "PassThru",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28635,52 +31653,117 @@
},
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "InputObject",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "PassThru",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28689,34 +31772,44 @@
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "PassThru",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -28753,14 +31846,14 @@
}
],
"AliasList": [
- "Set-AnfBackupPolicy"
+ "Resume-AnfReplication"
]
},
{
"VerbName": "Set",
- "NounName": "AzNetAppFilesPool",
- "Name": "Set-AzNetAppFilesPool",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Pool.SetAzureRmNetAppFilesPool",
+ "NounName": "AzNetAppFilesAccount",
+ "Name": "Set-AzNetAppFilesAccount",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.SetAzureRmNetAppFilesAccount",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -28769,26 +31862,22 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
+ "ResourceGroupName": "System.String",
"Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String"
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
},
"Methods": [
{
@@ -28844,19 +31933,10 @@
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "AccountName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
{
"Name": "Name",
"AliasList": [
- "PoolName"
+ "AccountName"
],
"Type": {
"Namespace": "System",
@@ -28866,25 +31946,29 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolSize",
+ "Name": "ActiveDirectory",
"Type": {
- "Namespace": "System",
- "Name": "System.Int64",
- "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ServiceLevel",
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "QosType",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -28893,78 +31977,27 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "CoolAccess",
+ "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=7.0.6.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": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
"ValidateNotNullOrEmpty": false
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AccountObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
+ }
+ ],
+ "ParameterSets": [
{
"Name": "ByFieldsParameterSet",
"Parameters": [
@@ -28998,26 +32031,11 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "AccountName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "PoolName"
+ "AccountName"
],
"Type": {
"Namespace": "System",
@@ -29031,66 +32049,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Int64",
- "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ServiceLevel",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "QosType",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "CoolAccess",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -29142,10 +32100,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "PoolName"
- ],
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29160,22 +32115,10 @@
},
{
"ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Int64",
- "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ServiceLevel",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29188,36 +32131,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "QosType",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "CoolAccess",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -29265,71 +32178,27 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "SetByResourceActiveDirectory",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "AccountObject",
+ "Name": "ActiveDirectory",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "PoolName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Int64",
- "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ServiceLevel",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29344,7 +32213,10 @@
},
{
"ParameterMetadata": {
- "Name": "QosType",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29352,22 +32224,7 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "CoolAccess",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -29438,10 +32295,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "PoolName"
- ],
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29456,22 +32310,10 @@
},
{
"ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Int64",
- "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ServiceLevel",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -29484,36 +32326,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "QosType",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "CoolAccess",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -29562,14 +32374,14 @@
}
],
"AliasList": [
- "Set-AnfPool"
+ "Set-AnfAccount"
]
},
{
"VerbName": "Set",
- "NounName": "AzNetAppFilesSnapshotPolicy",
- "Name": "Set-AzNetAppFilesSnapshotPolicy",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy.SetAzureRmNetAppFilesSnapshotPolicy",
+ "NounName": "AzNetAppFilesBackupPolicy",
+ "Name": "Set-AzNetAppFilesBackupPolicy",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.SetAzureRmNetAppFilesBackupPolicy",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -29578,15 +32390,16 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -29594,7 +32407,7 @@
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "SnapshotPolicyId": "System.String",
+ "BackupPolicyId": "System.String",
"ProvisioningState": "System.String"
},
"Methods": [
@@ -29663,7 +32476,7 @@
{
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -29682,63 +32495,50 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "HourlySchedule",
+ "Name": "DailyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -29759,10 +32559,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -29858,7 +32661,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -29889,85 +32692,72 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
+ "Name": "DailyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -30025,7 +32815,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -30056,85 +32846,72 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
+ "Name": "DailyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -30194,10 +32971,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -30219,7 +32999,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -30250,85 +33030,72 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
+ "Name": "DailyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -30401,7 +33168,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -30432,85 +33199,72 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
+ "Name": "DailyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -30563,14 +33317,14 @@
}
],
"AliasList": [
- "Set-AnfSnapshotPolicy"
+ "Set-AnfBackupPolicy"
]
},
{
"VerbName": "Set",
- "NounName": "AzNetAppFilesVolumePool",
- "Name": "Set-AzNetAppFilesVolumePool",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.SetAzureRmNetAppFilesVolumePool",
+ "NounName": "AzNetAppFilesPool",
+ "Name": "Set-AzNetAppFilesPool",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Pool.SetAzureRmNetAppFilesPool",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -30578,9 +33332,57 @@
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -30598,7 +33400,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountName",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30607,7 +33409,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolName",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30618,7 +33420,7 @@
{
"Name": "Name",
"AliasList": [
- "VolumeName"
+ "PoolName"
],
"Type": {
"Namespace": "System",
@@ -30628,7 +33430,16 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "NewPoolResourceId",
+ "Name": "PoolSize",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ServiceLevel",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30637,7 +33448,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30646,92 +33457,59 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolObject",
+ "Name": "CoolAccess",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
- "Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
- "Location": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String"
- }
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -30774,7 +33552,7 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30789,7 +33567,7 @@
},
{
"ParameterMetadata": {
- "Name": "PoolName",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30806,7 +33584,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "VolumeName"
+ "PoolName"
],
"Type": {
"Namespace": "System",
@@ -30822,56 +33600,37 @@
},
{
"ParameterMetadata": {
- "Name": "NewPoolResourceId",
+ "Name": "PoolSize",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "ServiceLevel",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "VolumeName"
- ],
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30879,43 +33638,42 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PoolObject",
+ "Name": "CoolAccess",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
- "Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
- "Location": "System.String",
- "Type": "System.String",
- "ResourceGroupName": "System.String"
- }
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -30947,11 +33705,14 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "PoolName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -30962,135 +33723,86 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "PoolSize",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ServiceLevel",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
- "Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "QosType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -31118,187 +33830,46 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": [
- "Set-AnfVolumePool"
- ]
- },
- {
- "VerbName": "Suspend",
- "NounName": "AzNetAppFilesReplication",
- "Name": "Suspend-AzNetAppFilesReplication",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.BreakAzureRmNetAppFilesReplication",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByFieldsParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ResourceGroupName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AccountName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "PoolName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Name",
- "AliasList": [
- "VolumeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ForceBreak",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "InputObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
- "Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "PassThru",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "ByFieldsParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "AccountObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "PoolName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31313,11 +33884,11 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "PoolSize",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -31328,7 +33899,7 @@
},
{
"ParameterMetadata": {
- "Name": "PoolName",
+ "Name": "ServiceLevel",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31343,10 +33914,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "VolumeName"
- ],
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31354,20 +33922,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ForceBreak",
+ "Name": "CoolAccess",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -31376,13 +33944,16 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -31437,124 +34008,61 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Name",
+ "AliasList": [
+ "PoolName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "PoolSize",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ServiceLevel",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
- "Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "QosType",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -31563,22 +34071,11 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "CoolAccess",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": false
},
@@ -31586,21 +34083,19 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -31637,14 +34132,14 @@
}
],
"AliasList": [
- "Suspend-AnfReplication"
+ "Set-AnfPool"
]
},
{
- "VerbName": "Update",
- "NounName": "AzNetAppFilesAccount",
- "Name": "Update-AzNetAppFilesAccount",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.UpdateAzureRmNetAppFilesAccount",
+ "VerbName": "Set",
+ "NounName": "AzNetAppFilesSnapshotPolicy",
+ "Name": "Set-AzNetAppFilesSnapshotPolicy",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy.SetAzureRmNetAppFilesSnapshotPolicy",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -31653,11 +34148,15 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
+ "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -31665,6 +34164,7 @@
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
+ "SnapshotPolicyId": "System.String",
"ProvisioningState": "System.String"
},
"Methods": [
@@ -31722,10 +34222,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31734,7 +34231,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotPolicyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31743,24 +34243,99 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ActiveDirectory",
+ "Name": "Enabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "HourlySchedule",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -31774,14 +34349,11 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "ResourceId",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -31808,7 +34380,7 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "ByFieldsParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -31835,7 +34407,22 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -31844,7 +34431,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "AccountName"
+ "SnapshotPolicyName"
],
"Type": {
"Namespace": "System",
@@ -31860,12 +34447,11 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveDirectory",
+ "Name": "Enabled",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -31874,6 +34460,91 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Tag",
@@ -31921,11 +34592,14 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotPolicyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -31936,15 +34610,35 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Enabled",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
},
"ValidateNotNullOrEmpty": true
},
@@ -31955,29 +34649,39 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "DailySchedule",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "WeeklySchedule",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
@@ -31988,16 +34692,22 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveDirectory",
+ "Name": "MonthlySchedule",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -32049,18 +34759,21 @@
]
},
{
- "Name": "ByObjectParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -32080,7 +34793,10 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotPolicyName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32095,11 +34811,11 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Enabled",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -32110,14 +34826,16 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "AccountName"
- ],
+ "Name": "HourlySchedule",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
},
"ValidateNotNullOrEmpty": true
},
@@ -32128,16 +34846,65 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveDirectory",
+ "Name": "DailySchedule",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -32187,82 +34954,209 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": [
- "Update-AnfAccount"
- ]
- },
- {
- "VerbName": "Update",
- "NounName": "AzNetAppFilesActiveDirectory",
- "Name": "Update-AzNetAppFilesActiveDirectory",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory.UpdateAzureRmNetAppFilesActiveDirectory",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByFieldsParameterSet",
- "OutputTypes": [
+ },
{
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
- "Administrators": "System.Collections.Generic.IList`1[System.String]",
- "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
- "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
- "LdapOverTLS": "System.Nullable`1[System.Boolean]",
- "LdapSigning": "System.Nullable`1[System.Boolean]",
- "AesEncryption": "System.Nullable`1[System.Boolean]",
- "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
- "ServerRootCACertificate": "System.String",
- "AdName": "System.String",
- "KdcIP": "System.String",
- "Site": "System.String",
- "SmbServerName": "System.String",
- "StatusDetails": "System.String",
- "Status": "System.String",
- "Dns": "System.String",
- "Domain": "System.String",
- "Password": "System.String",
- "Username": "System.String",
- "ActiveDirectoryId": "System.String",
- "AccountName": "System.String",
- "OrganizationalUnit": "System.String",
- "ResourceGroupName": "System.String"
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "Methods": [
- {
- "Name": "GetType",
- "ReturnType": "System.Type"
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotPolicyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "ToString",
- "ReturnType": "System.String"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
}
- ],
- "ReturnType": "System.Boolean"
+ },
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": ""
- }
- ]
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Set-AnfSnapshotPolicy"
+ ]
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzNetAppFilesVolumePool",
+ "Name": "Set-AzNetAppFilesVolumePool",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.SetAzureRmNetAppFilesVolumePool",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ParameterSets": [
"__AllParameterSets"
@@ -32289,71 +35183,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ActiveDirectoryId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Dns",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Domain",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Site",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SmbServerName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Username",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Password",
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "OrganizationalUnit",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32362,7 +35192,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "KdcIP",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32371,17 +35204,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "BackupOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ServerRootCACertificate",
+ "Name": "NewPoolResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32390,7 +35213,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AdName",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32399,87 +35222,29 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "SecurityOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AesEncryption",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "LdapSigning",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "LdapOverTLS",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AllowLocalNfsUsersWithLdap",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Administrator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "EncryptDCConnection",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AccountObject",
+ "Name": "PoolObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
"Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
"Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
"Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -32488,33 +35253,65 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
- "Administrators": "System.Collections.Generic.IList`1[System.String]",
- "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
- "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
- "LdapOverTLS": "System.Nullable`1[System.Boolean]",
- "LdapSigning": "System.Nullable`1[System.Boolean]",
- "AesEncryption": "System.Nullable`1[System.Boolean]",
- "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
- "ServerRootCACertificate": "System.String",
- "AdName": "System.String",
- "KdcIP": "System.String",
- "Site": "System.String",
- "SmbServerName": "System.String",
- "StatusDetails": "System.String",
- "Status": "System.String",
- "Dns": "System.String",
- "Domain": "System.String",
- "Password": "System.String",
- "Username": "System.String",
- "ActiveDirectoryId": "System.String",
- "AccountName": "System.String",
- "OrganizationalUnit": "System.String",
- "ResourceGroupName": "System.String"
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -32576,7 +35373,7 @@
},
{
"ParameterMetadata": {
- "Name": "ActiveDirectoryId",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32591,23 +35388,25 @@
},
{
"ParameterMetadata": {
- "Name": "Dns",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Domain",
+ "Name": "NewPoolResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32622,22 +35421,41 @@
},
{
"ParameterMetadata": {
- "Name": "Site",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByParentObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "SmbServerName",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32645,44 +35463,79 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Username",
+ "Name": "PoolObject",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Password",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "OrganizationalUnit",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32690,45 +35543,362 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "KdcIP",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "BackupOperator",
+ "Name": "InputObject",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ServerRootCACertificate",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Set-AnfVolumePool"
+ ]
+ },
+ {
+ "VerbName": "Suspend",
+ "NounName": "AzNetAppFilesReplication",
+ "Name": "Suspend-AzNetAppFilesReplication",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Replication.BreakAzureRmNetAppFilesReplication",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ForceBreak",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32736,14 +35906,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AdName",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32751,45 +35921,47 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SecurityOperator",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AesEncryption",
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LdapSigning",
+ "Name": "ForceBreak",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
@@ -32804,13 +35976,13 @@
},
{
"ParameterMetadata": {
- "Name": "LdapOverTLS",
+ "Name": "PassThru",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -32819,44 +35991,59 @@
},
{
"ParameterMetadata": {
- "Name": "AllowLocalNfsUsersWithLdap",
+ "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=7.0.6.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": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Administrator",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "EncryptDCConnection",
+ "Name": "PassThru",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -32892,41 +36079,72 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "ByObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ActiveDirectoryId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AccountObject",
+ "Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -32938,14 +36156,13 @@
},
{
"ParameterMetadata": {
- "Name": "Dns",
+ "Name": "PassThru",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -32954,28 +36171,44 @@
},
{
"ParameterMetadata": {
- "Name": "Domain",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Site",
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -32984,67 +36217,216 @@
},
{
"ParameterMetadata": {
- "Name": "SmbServerName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Username",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Suspend-AnfReplication"
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzNetAppFilesAccount",
+ "Name": "Update-AzNetAppFilesAccount",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.UpdateAzureRmNetAppFilesAccount",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Password",
- "Type": {
- "Namespace": "System.Security",
- "Name": "System.Security.SecureString",
- "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OrganizationalUnit",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ActiveDirectory",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "KdcIP",
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33052,30 +36434,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "BackupOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ServerRootCACertificate",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33090,7 +36456,10 @@
},
{
"ParameterMetadata": {
- "Name": "AdName",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33098,95 +36467,19 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SecurityOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AesEncryption",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "LdapSigning",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "LdapOverTLS",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AllowLocalNfsUsersWithLdap",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Administrator",
+ "Name": "ActiveDirectory",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
},
"ValidateNotNullOrEmpty": true
},
@@ -33197,11 +36490,14 @@
},
{
"ParameterMetadata": {
- "Name": "EncryptDCConnection",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -33239,27 +36535,11 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Dns",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Domain",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33267,14 +36547,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Site",
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33282,14 +36562,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SmbServerName",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33304,7 +36584,10 @@
},
{
"ParameterMetadata": {
- "Name": "Username",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33312,18 +36595,19 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Password",
+ "Name": "ActiveDirectory",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
},
"ValidateNotNullOrEmpty": true
},
@@ -33334,11 +36618,14 @@
},
{
"ParameterMetadata": {
- "Name": "OrganizationalUnit",
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -33349,38 +36636,68 @@
},
{
"ParameterMetadata": {
- "Name": "KdcIP",
+ "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"
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "BackupOperator",
+ "Name": "InputObject",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ServerRootCACertificate",
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33388,14 +36705,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AdName",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33410,27 +36727,30 @@
},
{
"ParameterMetadata": {
- "Name": "SecurityOperator",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AesEncryption",
+ "Name": "ActiveDirectory",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
},
"ValidateNotNullOrEmpty": true
},
@@ -33441,11 +36761,14 @@
},
{
"ParameterMetadata": {
- "Name": "LdapSigning",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -33456,73 +36779,12 @@
},
{
"ParameterMetadata": {
- "Name": "LdapOverTLS",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AllowLocalNfsUsersWithLdap",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Administrator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "EncryptDCConnection",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": true
- },
- "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",
@@ -33542,70 +36804,178 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": [
+ "Update-AnfAccount"
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzNetAppFilesAccountCredential",
+ "Name": "Update-AzNetAppFilesAccountCredential",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Account.UpdateAzureRmNetAppFilesAccountCredential",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
{
- "Name": "ByObjectParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
- "Administrators": "System.Collections.Generic.IList`1[System.String]",
- "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
- "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
- "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
- "LdapOverTLS": "System.Nullable`1[System.Boolean]",
- "LdapSigning": "System.Nullable`1[System.Boolean]",
- "AesEncryption": "System.Nullable`1[System.Boolean]",
- "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
- "ServerRootCACertificate": "System.String",
- "AdName": "System.String",
- "KdcIP": "System.String",
- "Site": "System.String",
- "SmbServerName": "System.String",
- "StatusDetails": "System.String",
- "Status": "System.String",
- "Dns": "System.String",
- "Domain": "System.String",
- "Password": "System.String",
- "Username": "System.String",
- "ActiveDirectoryId": "System.String",
- "AccountName": "System.String",
- "OrganizationalUnit": "System.String",
- "ResourceGroupName": "System.String"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "Dns",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Domain",
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33613,14 +36983,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Site",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33635,7 +37005,10 @@
},
{
"ParameterMetadata": {
- "Name": "SmbServerName",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33643,20 +37016,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Username",
+ "Name": "PassThru",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -33665,22 +37038,38 @@
},
{
"ParameterMetadata": {
- "Name": "Password",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"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.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "OrganizationalUnit",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33688,14 +37077,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "KdcIP",
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33703,30 +37092,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "BackupOperator",
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ServerRootCACertificate",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33741,7 +37114,10 @@
},
{
"ParameterMetadata": {
- "Name": "AdName",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33749,21 +37125,20 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SecurityOperator",
+ "Name": "PassThru",
"Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -33772,56 +37147,87 @@
},
{
"ParameterMetadata": {
- "Name": "AesEncryption",
+ "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=7.0.6.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": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "LdapSigning",
+ "Name": "InputObject",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "LdapOverTLS",
+ "Name": "ResourceGroupName",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AllowLocalNfsUsersWithLdap",
+ "Name": "Location",
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
"ValidateNotNullOrEmpty": true
},
@@ -33832,29 +37238,31 @@
},
{
"ParameterMetadata": {
- "Name": "Administrator",
+ "Name": "Name",
+ "AliasList": [
+ "AccountName"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "ElementType": "System.String"
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "EncryptDCConnection",
+ "Name": "PassThru",
"Type": {
"Namespace": "System.Management.Automation",
"Name": "System.Management.Automation.SwitchParameter",
"AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -33891,14 +37299,14 @@
}
],
"AliasList": [
- "Update-AnfActiveDirectory"
+ "Update-AnfAccountCredential"
]
},
{
"VerbName": "Update",
- "NounName": "AzNetAppFilesBackup",
- "Name": "Update-AzNetAppFilesBackup",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.UpdateAzureRmNetAppFilesBackup",
+ "NounName": "AzNetAppFilesActiveDirectory",
+ "Name": "Update-AzNetAppFilesActiveDirectory",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory.UpdateAzureRmNetAppFilesActiveDirectory",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -33907,25 +37315,33 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "VolumesAssigned": "System.Nullable`1[System.Int32]",
- "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "BackupPolicyId": "System.String",
- "ProvisioningState": "System.String"
+ "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
+ "Administrators": "System.Collections.Generic.IList`1[System.String]",
+ "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
+ "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
+ "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
+ "LdapOverTLS": "System.Nullable`1[System.Boolean]",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
+ "Status": "System.String",
+ "Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
+ "OrganizationalUnit": "System.String",
+ "ResourceGroupName": "System.String"
},
"Methods": [
{
@@ -33973,7 +37389,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Location",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33982,7 +37398,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountName",
+ "Name": "ActiveDirectoryId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33991,10 +37407,17 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
+ "Name": "Dns",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Domain",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34003,7 +37426,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolName",
+ "Name": "Site",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34012,7 +37435,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "VolumeName",
+ "Name": "SmbServerName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34021,7 +37444,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Label",
+ "Name": "Username",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34030,19 +37453,16 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Password",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "OrganizationalUnit",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34051,60 +37471,127 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "VolumeObject",
+ "Name": "KdcIP",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "BackupOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ServerRootCACertificate",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AdName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SecurityOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AesEncryption",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LdapSigning",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LdapOverTLS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AllowLocalNfsUsersWithLdap",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Administrator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "EncryptDCConnection",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -34113,22 +37600,33 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "Size": "System.Nullable`1[System.Int64]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "BackupId": "System.String",
- "Label": "System.String",
- "BackupType": "System.String",
- "ProvisioningState": "System.String",
- "VolumeName": "System.String"
+ "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
+ "Administrators": "System.Collections.Generic.IList`1[System.String]",
+ "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
+ "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
+ "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
+ "LdapOverTLS": "System.Nullable`1[System.Boolean]",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
+ "Status": "System.String",
+ "Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
+ "OrganizationalUnit": "System.String",
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -34175,7 +37673,7 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34190,7 +37688,7 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "ActiveDirectoryId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34205,10 +37703,23 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
+ "Name": "Dns",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Domain",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34216,14 +37727,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PoolName",
+ "Name": "Site",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34231,14 +37742,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VolumeName",
+ "Name": "SmbServerName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34246,14 +37757,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Label",
+ "Name": "Username",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34268,14 +37779,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Password",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -34286,41 +37794,22 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "OrganizationalUnit",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
+ "Name": "KdcIP",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34328,79 +37817,30 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "VolumeObject",
+ "Name": "BackupOperator",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
- "Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Label",
+ "Name": "ServerRootCACertificate",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34415,14 +37855,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "AdName",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -34433,42 +37870,27 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "SecurityOperator",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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",
+ "ElementType": "System.String"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Label",
+ "Name": "AesEncryption",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -34479,14 +37901,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "LdapSigning",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -34497,57 +37916,42 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "LdapOverTLS",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByResourceIdParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "AllowLocalNfsUsersWithLdap",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Label",
+ "Name": "Administrator",
"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",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -34558,14 +37962,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "EncryptDCConnection",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -34603,29 +38004,44 @@
]
},
{
- "Name": "ByObjectParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "ActiveDirectoryId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
- "CreationDate": "System.Nullable`1[System.DateTime]",
- "Size": "System.Nullable`1[System.Int64]",
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
- "BackupId": "System.String",
- "Label": "System.String",
- "BackupType": "System.String",
- "ProvisioningState": "System.String",
- "VolumeName": "System.String"
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -34637,29 +38053,12 @@
},
{
"ParameterMetadata": {
- "Name": "Label",
+ "Name": "Dns",
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "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.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",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -34670,290 +38069,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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": [
- "Update-AnfBackup"
- ]
- },
- {
- "VerbName": "Update",
- "NounName": "AzNetAppFilesBackupPolicy",
- "Name": "Update-AzNetAppFilesBackupPolicy",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.UpdateAzureRmNetAppFilesBackupPolicy",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByFieldsParameterSet",
- "OutputTypes": [
- {
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "VolumesAssigned": "System.Nullable`1[System.Int32]",
- "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "BackupPolicyId": "System.String",
- "ProvisioningState": "System.String"
- },
- "Methods": [
- {
- "Name": "GetType",
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": ""
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ResourceGroupName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Location",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AccountName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DailyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "WeeklyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "MonthlyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "YearlyBackupsToKeep",
- "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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AccountObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "InputObject",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "VolumesAssigned": "System.Nullable`1[System.Int32]",
- "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "BackupPolicyId": "System.String",
- "ProvisioningState": "System.String"
- }
- },
- "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]"
- }
- },
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "ByFieldsParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Domain",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34961,14 +38077,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Site",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34976,14 +38092,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "SmbServerName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -34991,17 +38107,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
+ "Name": "Username",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -35009,21 +38122,18 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "Password",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35034,14 +38144,11 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "OrganizationalUnit",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35052,14 +38159,11 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "KdcIP",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35070,14 +38174,12 @@
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "BackupOperator",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -35088,14 +38190,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "ServerRootCACertificate",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -35106,90 +38205,57 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "AdName",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByParentObjectParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "BackupPolicyName"
- ],
+ "Name": "SecurityOperator",
"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",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AccountObject",
+ "Name": "AesEncryption",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "ProvisioningState": "System.String"
- }
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "LdapSigning",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -35200,14 +38266,11 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "LdapOverTLS",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -35218,14 +38281,11 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "AllowLocalNfsUsersWithLdap",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -35236,14 +38296,12 @@
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "Administrator",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -35254,14 +38312,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "EncryptDCConnection",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -35303,16 +38358,14 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "Dns",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
- },
- "ValidateNotNullOrEmpty": true
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -35321,14 +38374,11 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "Domain",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35339,14 +38389,11 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "Site",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35357,14 +38404,11 @@
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "SmbServerName",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35375,14 +38419,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Username",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -35393,38 +38434,22 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Password",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByResourceIdParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "OrganizationalUnit",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -35432,21 +38457,18 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "KdcIP",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35457,14 +38479,12 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "BackupOperator",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -35475,14 +38495,11 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "ServerRootCACertificate",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35493,14 +38510,11 @@
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "AdName",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35511,14 +38525,103 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "SecurityOperator",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AesEncryption",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LdapSigning",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LdapOverTLS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AllowLocalNfsUsersWithLdap",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Administrator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EncryptDCConnection",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -35563,25 +38666,33 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "VolumesAssigned": "System.Nullable`1[System.Int32]",
- "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
- "Name": "System.String",
- "Type": "System.String",
- "Etag": "System.String",
- "BackupPolicyId": "System.String",
- "ProvisioningState": "System.String"
+ "LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
+ "Administrators": "System.Collections.Generic.IList`1[System.String]",
+ "SecurityOperators": "System.Collections.Generic.IList`1[System.String]",
+ "BackupOperators": "System.Collections.Generic.IList`1[System.String]",
+ "AllowLocalNfsUsersWithLdap": "System.Nullable`1[System.Boolean]",
+ "LdapOverTLS": "System.Nullable`1[System.Boolean]",
+ "LdapSigning": "System.Nullable`1[System.Boolean]",
+ "AesEncryption": "System.Nullable`1[System.Boolean]",
+ "EncryptDCConnections": "System.Nullable`1[System.Boolean]",
+ "ServerRootCACertificate": "System.String",
+ "AdName": "System.String",
+ "KdcIP": "System.String",
+ "Site": "System.String",
+ "SmbServerName": "System.String",
+ "StatusDetails": "System.String",
+ "Status": "System.String",
+ "Dns": "System.String",
+ "Domain": "System.String",
+ "Password": "System.String",
+ "Username": "System.String",
+ "ActiveDirectoryId": "System.String",
+ "AccountName": "System.String",
+ "OrganizationalUnit": "System.String",
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -35593,14 +38704,12 @@
},
{
"ParameterMetadata": {
- "Name": "DailyBackupsToKeep",
+ "Name": "Dns",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
},
"ValidateNotNullOrEmpty": true
},
@@ -35611,14 +38720,11 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklyBackupsToKeep",
+ "Name": "Domain",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35629,14 +38735,11 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlyBackupsToKeep",
+ "Name": "Site",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35647,14 +38750,11 @@
},
{
"ParameterMetadata": {
- "Name": "YearlyBackupsToKeep",
+ "Name": "SmbServerName",
"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",
- "GenericTypeArguments": [
- "System.Int32"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -35665,14 +38765,209 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "Username",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Password",
+ "Type": {
+ "Namespace": "System.Security",
+ "Name": "System.Security.SecureString",
+ "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OrganizationalUnit",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "KdcIP",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "BackupOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServerRootCACertificate",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SecurityOperator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AesEncryption",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LdapSigning",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LdapOverTLS",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AllowLocalNfsUsersWithLdap",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Administrator",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "ElementType": "System.String"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EncryptDCConnection",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -35711,42 +39006,41 @@
}
],
"AliasList": [
- "Update-AnfBackupPolicy"
+ "Update-AnfActiveDirectory"
]
},
{
"VerbName": "Update",
- "NounName": "AzNetAppFilesPool",
- "Name": "Update-AzNetAppFilesPool",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Pool.UpdateAzureRmNetAppFilesPool",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
+ "NounName": "AzNetAppFilesBackup",
+ "Name": "Update-AzNetAppFilesBackup",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.UpdateAzureRmNetAppFilesBackup",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
"SupportsPaging": false,
"DefaultParameterSetName": "ByFieldsParameterSet",
"OutputTypes": [
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
"Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
+ "ResourceGroupName": "System.String",
"Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String"
+ "Etag": "System.String",
+ "BackupPolicyId": "System.String",
+ "ProvisioningState": "System.String"
},
"Methods": [
{
@@ -35814,7 +39108,7 @@
{
"Name": "Name",
"AliasList": [
- "PoolName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -35824,19 +39118,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolSize",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "QosType",
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Label",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -35866,22 +39166,68 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountObject",
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -35890,26 +39236,22 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
- "Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
+ "ResourceGroupName": "System.String",
"Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String"
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -35964,7 +39306,7 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -35988,7 +39330,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "PoolName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -36004,25 +39346,37 @@
},
{
"ParameterMetadata": {
- "Name": "PoolSize",
+ "Name": "PoolName",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "QosType",
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Label",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -36088,7 +39442,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "PoolName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -36104,22 +39458,68 @@
},
{
"ParameterMetadata": {
- "Name": "AccountObject",
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
"Id": "System.String",
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -36131,25 +39531,7 @@
},
{
"ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "QosType",
+ "Name": "Label",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -36213,25 +39595,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "QosType",
+ "Name": "Label",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -36310,25 +39674,7 @@
},
{
"ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "QosType",
+ "Name": "Label",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -36395,26 +39741,22 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
"Size": "System.Nullable`1[System.Int64]",
- "Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
+ "ResourceGroupName": "System.String",
"Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String"
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -36426,25 +39768,7 @@
},
{
"ParameterMetadata": {
- "Name": "PoolSize",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "QosType",
+ "Name": "Label",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -36505,14 +39829,14 @@
}
],
"AliasList": [
- "Update-AnfPool"
+ "Update-AnfBackup"
]
},
{
"VerbName": "Update",
- "NounName": "AzNetAppFilesSnapshotPolicy",
- "Name": "Update-AzNetAppFilesSnapshotPolicy",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy.UpdateAzureRmNetAppFilesSnapshotPolicy",
+ "NounName": "AzNetAppFilesBackupPolicy",
+ "Name": "Update-AzNetAppFilesBackupPolicy",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.UpdateAzureRmNetAppFilesBackupPolicy",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -36521,15 +39845,16 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -36537,7 +39862,7 @@
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "SnapshotPolicyId": "System.String",
+ "BackupPolicyId": "System.String",
"ProvisioningState": "System.String"
},
"Methods": [
@@ -36606,7 +39931,7 @@
{
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -36616,75 +39941,62 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Enabled",
+ "Name": "DailyBackupsToKeep",
"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",
"GenericTypeArguments": [
- "System.Boolean"
+ "System.Int32"
]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "HourlySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DailySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "WeeklySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "MonthlySchedule",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -36697,27 +40009,18 @@
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
{
"Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -36734,15 +40037,16 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -36750,7 +40054,7 @@
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "SnapshotPolicyId": "System.String",
+ "BackupPolicyId": "System.String",
"ProvisioningState": "System.String"
}
},
@@ -36830,7 +40134,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -36846,13 +40150,13 @@
},
{
"ParameterMetadata": {
- "Name": "Enabled",
+ "Name": "DailyBackupsToKeep",
"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",
"GenericTypeArguments": [
- "System.Boolean"
+ "System.Int32"
]
},
"ValidateNotNullOrEmpty": true
@@ -36864,37 +40168,14 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -36905,18 +40186,14 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -36927,18 +40204,14 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37000,7 +40273,7 @@
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SnapshotPolicyName"
+ "BackupPolicyName"
],
"Type": {
"Namespace": "System",
@@ -37020,10 +40293,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -37043,13 +40319,13 @@
},
{
"ParameterMetadata": {
- "Name": "Enabled",
+ "Name": "DailyBackupsToKeep",
"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",
"GenericTypeArguments": [
- "System.Boolean"
+ "System.Int32"
]
},
"ValidateNotNullOrEmpty": true
@@ -37061,37 +40337,14 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37102,18 +40355,14 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37124,18 +40373,14 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37195,13 +40440,13 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Enabled",
+ "Name": "DailyBackupsToKeep",
"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",
"GenericTypeArguments": [
- "System.Boolean"
+ "System.Int32"
]
},
"ValidateNotNullOrEmpty": true
@@ -37213,37 +40458,14 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37254,18 +40476,14 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37276,18 +40494,14 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37362,13 +40576,13 @@
},
{
"ParameterMetadata": {
- "Name": "Enabled",
+ "Name": "DailyBackupsToKeep",
"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",
"GenericTypeArguments": [
- "System.Boolean"
+ "System.Int32"
]
},
"ValidateNotNullOrEmpty": true
@@ -37380,37 +40594,14 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37421,18 +40612,14 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37443,18 +40630,14 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37517,15 +40700,16 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
- "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
- "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
- "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
"Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
"Tags": "System.Object",
"ResourceGroupName": "System.String",
"Location": "System.String",
@@ -37533,7 +40717,7 @@
"Name": "System.String",
"Type": "System.String",
"Etag": "System.String",
- "SnapshotPolicyId": "System.String",
+ "BackupPolicyId": "System.String",
"ProvisioningState": "System.String"
}
},
@@ -37546,13 +40730,13 @@
},
{
"ParameterMetadata": {
- "Name": "Enabled",
+ "Name": "DailyBackupsToKeep",
"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",
"GenericTypeArguments": [
- "System.Boolean"
+ "System.Int32"
]
},
"ValidateNotNullOrEmpty": true
@@ -37564,37 +40748,14 @@
},
{
"ParameterMetadata": {
- "Name": "HourlySchedule",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DailySchedule",
+ "Name": "WeeklyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37605,18 +40766,14 @@
},
{
"ParameterMetadata": {
- "Name": "WeeklySchedule",
+ "Name": "MonthlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "Day": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37627,18 +40784,14 @@
},
{
"ParameterMetadata": {
- "Name": "MonthlySchedule",
+ "Name": "YearlyBackupsToKeep",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
- "Hour": "System.Nullable`1[System.Int32]",
- "Minute": "System.Nullable`1[System.Int32]",
- "UsedBytes": "System.Nullable`1[System.Int64]",
- "DaysOfMonth": "System.String"
- }
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -37695,14 +40848,14 @@
}
],
"AliasList": [
- "Update-AnfSnapshotPolicy"
+ "Update-AnfBackupPolicy"
]
},
{
"VerbName": "Update",
- "NounName": "AzNetAppFilesSubvolume",
- "Name": "Update-AzNetAppFilesSubvolume",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.UpdateAzureRmNetAppFilesSubvolume",
+ "NounName": "AzNetAppFilesPool",
+ "Name": "Update-AzNetAppFilesPool",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Pool.UpdateAzureRmNetAppFilesPool",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -37711,25 +40864,26 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
- "Enabled": "System.Nullable`1[System.Boolean]",
- "VolumesAssigned": "System.Nullable`1[System.Int32]",
- "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
- "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
"Tags": "System.Object",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
"Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
"Type": "System.String",
- "Etag": "System.String",
- "BackupPolicyId": "System.String",
- "ProvisioningState": "System.String"
+ "ResourceGroupName": "System.String"
},
"Methods": [
{
@@ -37777,7 +40931,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AccountName",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -37786,7 +40940,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "PoolName",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -37795,7 +40949,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "VolumeName",
+ "Name": "Name",
+ "AliasList": [
+ "PoolName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -37804,19 +40961,19 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "SubvolumeName"
- ],
+ "Name": "PoolSize",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Path",
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -37825,14 +40982,23 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Size",
+ "Name": "CoolAccess",
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -37846,60 +41012,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "VolumeObject",
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -37908,22 +41039,26 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
- "CreationDate": "System.Nullable`1[System.DateTime]",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
"Size": "System.Nullable`1[System.Int64]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
"Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
"Type": "System.String",
- "BackupId": "System.String",
- "Label": "System.String",
- "BackupType": "System.String",
- "ProvisioningState": "System.String",
- "VolumeName": "System.String"
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -37970,7 +41105,7 @@
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "Location",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -37978,14 +41113,14 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PoolName",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38000,7 +41135,10 @@
},
{
"ParameterMetadata": {
- "Name": "VolumeName",
+ "Name": "Name",
+ "AliasList": [
+ "PoolName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38008,21 +41146,21 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SubvolumeName"
- ],
+ "Name": "PoolSize",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -38033,7 +41171,7 @@
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38041,25 +41179,40 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "CoolAccess",
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -38093,13 +41246,13 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "SubvolumeName"
+ "PoolName"
],
"Type": {
"Namespace": "System",
@@ -38108,29 +41261,44 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "AccountObject",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "PoolSize",
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[System.Int64]",
@@ -38141,30 +41309,78 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "QosType",
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.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"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
"ValidateNotNullOrEmpty": false
},
"Mandatory": false,
@@ -38175,29 +41391,29 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "PoolSize",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SubvolumeName"
- ],
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38212,33 +41428,33 @@
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "CoolAccess",
"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=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -38272,83 +41488,33 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "ByResourceIdParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "VolumeObject",
+ "Name": "ResourceId",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
- "Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
- "ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SubvolumeName"
- ],
+ "Name": "PoolSize",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -38359,7 +41525,7 @@
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38367,25 +41533,40 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "CoolAccess",
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -38426,22 +41607,26 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
- "CreationDate": "System.Nullable`1[System.DateTime]",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
"Size": "System.Nullable`1[System.Int64]",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "Id": "System.String",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
"Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
"Type": "System.String",
- "BackupId": "System.String",
- "Label": "System.String",
- "BackupType": "System.String",
- "ProvisioningState": "System.String",
- "VolumeName": "System.String"
+ "ResourceGroupName": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -38453,14 +41638,14 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "SubvolumeName"
- ],
+ "Name": "PoolSize",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
},
"ValidateNotNullOrEmpty": true
},
@@ -38471,7 +41656,7 @@
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "QosType",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38479,25 +41664,40 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Size",
+ "Name": "CoolAccess",
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -38532,14 +41732,14 @@
}
],
"AliasList": [
- "Update-AnfSubvolume"
+ "Update-AnfPool"
]
},
{
"VerbName": "Update",
- "NounName": "AzNetAppFilesVolume",
- "Name": "Update-AzNetAppFilesVolume",
- "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.UpdateAzureRmNetAppFilesVolume",
+ "NounName": "AzNetAppFilesSnapshotPolicy",
+ "Name": "Update-AzNetAppFilesSnapshotPolicy",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy.UpdateAzureRmNetAppFilesSnapshotPolicy",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -38548,57 +41748,24 @@
{
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
+ "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "Enabled": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "SnapshotPolicyId": "System.String",
+ "ProvisioningState": "System.String"
},
"Methods": [
{
@@ -38663,19 +41830,10 @@
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "PoolName",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
{
"Name": "Name",
"AliasList": [
- "VolumeName"
+ "SnapshotPolicyName"
],
"Type": {
"Namespace": "System",
@@ -38685,67 +41843,80 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "UsageThreshold",
+ "Name": "Enabled",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, 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",
"GenericTypeArguments": [
- "System.Int64"
+ "System.Boolean"
]
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ServiceLevel",
+ "Name": "HourlySchedule",
"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.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ExportPolicy",
+ "Name": "DailySchedule",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
}
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Backup",
+ "Name": "WeeklySchedule",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "PolicyEnforced": "System.Nullable`1[System.Boolean]",
- "BackupEnabled": "System.Nullable`1[System.Boolean]",
- "BackupPolicyId": "System.String",
- "VaultId": "System.String"
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
}
},
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ThroughputMibps",
+ "Name": "MonthlySchedule",
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Double]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Double"
- ]
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "SnapshotPolicyId",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -38753,39 +41924,6 @@
},
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "IsDefaultQuotaEnabled",
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- },
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultUserQuotaInKiB",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultGroupQuotaInKiB",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "Tag",
"AliasList": [
@@ -38799,47 +41937,25 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "UnixPermission",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ResourceId",
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "PoolObject",
+ "Name": "AccountObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
+ "ResourceGroupName": "System.String",
"Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String"
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -38848,57 +41964,24 @@
"Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
- "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
- "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
- "ThroughputMibps": "System.Nullable`1[System.Double]",
- "CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "UsageThreshold": "System.Nullable`1[System.Int64]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
- "MountTargets": "System.Object",
+ "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
+ "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "Enabled": "System.Nullable`1[System.Boolean]",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
- "ProximityPlacementGroup": "System.String",
- "T2Network": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
"Location": "System.String",
- "UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "SnapshotPolicyId": "System.String",
+ "ProvisioningState": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -38930,70 +42013,3099 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotPolicyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "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",
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SnapshotPolicyName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "Encryption": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "ActiveDirectories": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory]",
+ "DisableShowmount": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "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",
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "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",
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "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",
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DailySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule",
+ "HourlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule",
+ "MonthlySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule",
+ "WeeklySchedule": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "SnapshotPolicyId": "System.String",
+ "ProvisioningState": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "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",
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "HourlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DailySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WeeklySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "Day": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MonthlySchedule",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SnapshotsToKeep": "System.Nullable`1[System.Int32]",
+ "Hour": "System.Nullable`1[System.Int32]",
+ "Minute": "System.Nullable`1[System.Int32]",
+ "UsedBytes": "System.Nullable`1[System.Int64]",
+ "DaysOfMonth": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Update-AnfSnapshotPolicy"
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzNetAppFilesSubvolume",
+ "Name": "Update-AzNetAppFilesSubvolume",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.UpdateAzureRmNetAppFilesSubvolume",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "VolumeBackups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup]",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "VolumesAssigned": "System.Nullable`1[System.Int32]",
+ "MonthlyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "WeeklyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "DailyBackupsToKeep": "System.Nullable`1[System.Int32]",
+ "Tags": "System.Object",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "BackupPolicyId": "System.String",
+ "ProvisioningState": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Path",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Size",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ }
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Path",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Size",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Path",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Size",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Path",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Size",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "VolumeObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Path",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Size",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Path",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Size",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Update-AnfSubvolume"
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzNetAppFilesVolume",
+ "Name": "Update-AzNetAppFilesVolume",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Volume.UpdateAzureRmNetAppFilesVolume",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "UsageThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ServiceLevel",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ExportPolicy",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Backup",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PolicyEnforced": "System.Nullable`1[System.Boolean]",
+ "BackupEnabled": "System.Nullable`1[System.Boolean]",
+ "BackupPolicyId": "System.String",
+ "VaultId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ThroughputMibps",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SnapshotPolicyId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "IsDefaultQuotaEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultUserQuotaInKiB",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultGroupQuotaInKiB",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "UnixPermission",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CoolnessPeriod",
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UsageThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServiceLevel",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExportPolicy",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Backup",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PolicyEnforced": "System.Nullable`1[System.Boolean]",
+ "BackupEnabled": "System.Nullable`1[System.Boolean]",
+ "BackupPolicyId": "System.String",
+ "VaultId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ThroughputMibps",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SnapshotPolicyId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsDefaultQuotaEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultUserQuotaInKiB",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultGroupQuotaInKiB",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UnixPermission",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolnessPeriod",
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "VolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PoolObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
+ "TotalThroughputMibps": "System.Nullable`1[System.Double]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "Tags": "System.Object",
+ "Etag": "System.String",
+ "PoolId": "System.String",
+ "EncryptionType": "System.String",
+ "ServiceLevel": "System.String",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "Id": "System.String",
+ "QosType": "System.String",
+ "Location": "System.String",
+ "Type": "System.String",
+ "ResourceGroupName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UsageThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServiceLevel",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExportPolicy",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Backup",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PolicyEnforced": "System.Nullable`1[System.Boolean]",
+ "BackupEnabled": "System.Nullable`1[System.Boolean]",
+ "BackupPolicyId": "System.String",
+ "VaultId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ThroughputMibps",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SnapshotPolicyId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsDefaultQuotaEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultUserQuotaInKiB",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultGroupQuotaInKiB",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UnixPermission",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolnessPeriod",
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
+ },
+ "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]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "UsageThreshold",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServiceLevel",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExportPolicy",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Backup",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PolicyEnforced": "System.Nullable`1[System.Boolean]",
+ "BackupEnabled": "System.Nullable`1[System.Boolean]",
+ "BackupPolicyId": "System.String",
+ "VaultId": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ThroughputMibps",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Double"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SnapshotPolicyId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsDefaultQuotaEnabled",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultUserQuotaInKiB",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "DefaultGroupQuotaInKiB",
"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.Int64]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.Int64"
+ ]
+ },
+ "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.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AccountName",
+ "Name": "UnixPermission",
"Type": {
"Namespace": "System",
"Name": "System.String",
"AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PoolName",
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolnessPeriod",
"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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
},
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DefaultProfile",
"AliasList": [
- "VolumeName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -39004,7 +45116,7 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -39045,7 +45157,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -39063,7 +45175,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -39195,6 +45307,39 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolnessPeriod",
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -39224,51 +45369,72 @@
]
},
{
- "Name": "ByParentObjectParameterSet",
+ "Name": "ByObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "VolumeName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PoolObject",
+ "Name": "InputObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "UtilizedThroughputMibps": "System.Nullable`1[System.Double]",
- "TotalThroughputMibps": "System.Nullable`1[System.Double]",
- "Size": "System.Nullable`1[System.Int64]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
"Tags": "System.Object",
- "Etag": "System.String",
- "PoolId": "System.String",
- "EncryptionType": "System.String",
- "ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "QosType": "System.String",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
"Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
"Type": "System.String",
- "ResourceGroupName": "System.String"
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -39317,7 +45483,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
}
@@ -39335,7 +45501,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -39467,6 +45633,39 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "CoolAccess",
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CoolnessPeriod",
+ "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",
+ "GenericTypeArguments": [
+ "System.Int32"
+ ]
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -39493,32 +45692,309 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
}
- ]
+ ]
+ }
+ ],
+ "AliasList": [
+ "Update-AnfVolume"
+ ]
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzNetAppFilesVolumeQuotaRule",
+ "Name": "Update-AzNetAppFilesVolumeQuotaRule",
+ "ClassName": "Microsoft.Azure.Commands.NetAppFiles.Backup.UpdateAzureRmNetAppFilesVolumeQuotaRule",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByFieldsParameterSet",
+ "OutputTypes": [
+ {
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AccountName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PoolName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeName",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "QuotaSize",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "QuotaType",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "QuotaTarget",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VolumeObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
+ "ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
+ "ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
+ "CoolAccess": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "ThroughputMibps": "System.Nullable`1[System.Double]",
+ "CoolnessPeriod": "System.Nullable`1[System.Int32]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
+ "ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
+ "T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ }
+ },
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "__AllParameterSets",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
+ },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByFieldsParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "UsageThreshold",
+ "Name": "ResourceGroupName",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ServiceLevel",
+ "Name": "AccountName",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -39526,71 +46002,47 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ExportPolicy",
- "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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
- }
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Backup",
+ "Name": "PoolName",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "PolicyEnforced": "System.Nullable`1[System.Boolean]",
- "BackupEnabled": "System.Nullable`1[System.Boolean]",
- "BackupPolicyId": "System.String",
- "VaultId": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ThroughputMibps",
+ "Name": "VolumeName",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Double]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Double"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SnapshotPolicyId",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -39598,20 +46050,23 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "IsDefaultQuotaEnabled",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -39620,16 +46075,13 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultUserQuotaInKiB",
+ "Name": "QuotaSize",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -39638,32 +46090,11 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultGroupQuotaInKiB",
+ "Name": "QuotaType",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "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.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"
},
"ValidateNotNullOrEmpty": true
},
@@ -39674,13 +46105,13 @@
},
{
"ParameterMetadata": {
- "Name": "UnixPermission",
+ "Name": "QuotaTarget",
"Type": {
"Namespace": "System",
"Name": "System.String",
"AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -39716,11 +46147,14 @@
]
},
{
- "Name": "ByResourceIdParameterSet",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -39731,18 +46165,18 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "UsageThreshold",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -39753,11 +46187,11 @@
},
{
"ParameterMetadata": {
- "Name": "ServiceLevel",
+ "Name": "QuotaSize",
"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"
},
"ValidateNotNullOrEmpty": true
},
@@ -39768,14 +46202,11 @@
},
{
"ParameterMetadata": {
- "Name": "ExportPolicy",
+ "Name": "QuotaType",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -39786,17 +46217,11 @@
},
{
"ParameterMetadata": {
- "Name": "Backup",
+ "Name": "QuotaTarget",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "PolicyEnforced": "System.Nullable`1[System.Boolean]",
- "BackupEnabled": "System.Nullable`1[System.Boolean]",
- "BackupPolicyId": "System.String",
- "VaultId": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -39807,14 +46232,22 @@
},
{
"ParameterMetadata": {
- "Name": "ThroughputMibps",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Double]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Double"
- ]
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -39822,10 +46255,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceIdParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "SnapshotPolicyId",
+ "Name": "ResourceId",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -39833,38 +46271,41 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "IsDefaultQuotaEnabled",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.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"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultUserQuotaInKiB",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -39873,16 +46314,13 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultGroupQuotaInKiB",
+ "Name": "QuotaSize",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -39891,14 +46329,11 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [
- "Tags"
- ],
+ "Name": "QuotaType",
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, 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"
},
"ValidateNotNullOrEmpty": true
},
@@ -39909,13 +46344,13 @@
},
{
"ParameterMetadata": {
- "Name": "UnixPermission",
+ "Name": "QuotaTarget",
"Type": {
"Namespace": "System",
"Name": "System.String",
"AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -39951,64 +46386,72 @@
]
},
{
- "Name": "ByObjectParameterSet",
+ "Name": "ByParentObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "VolumeObject",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
"SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
"PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
- "LdapEnabled": "System.Nullable`1[System.Boolean]",
- "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
- "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
"KerberosEnabled": "System.Nullable`1[System.Boolean]",
+ "SmbEncryption": "System.Nullable`1[System.Boolean]",
+ "LdapEnabled": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
+ "SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
"CloneProgress": "System.Nullable`1[System.Int32]",
- "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"UsageThreshold": "System.Nullable`1[System.Int64]",
+ "DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
"DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MountTargets": "System.Object",
"Tags": "System.Object",
- "AvsDataStore": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
"StorageToNetworkProximity": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
+ "VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
"ResourceGroupName": "System.String",
- "SecurityStyle": "System.String",
- "BackupId": "System.String",
- "VolumeType": "System.String",
- "SubnetId": "System.String",
- "BaremetalTenantId": "System.String",
- "SnapshotId": "System.String",
- "ServiceLevel": "System.String",
- "CreationToken": "System.String",
- "FileSystemId": "System.String",
- "ProvisioningState": "System.String",
- "Etag": "System.String",
- "Type": "System.String",
- "Name": "System.String",
- "Id": "System.String",
- "Location": "System.String",
"UnixPermission": "System.String",
- "EnableSubvolumes": "System.String"
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
+ "FileSystemId": "System.String",
+ "CreationToken": "System.String",
+ "ServiceLevel": "System.String",
+ "SnapshotId": "System.String",
+ "BaremetalTenantId": "System.String",
+ "SubnetId": "System.String",
+ "VolumeType": "System.String",
+ "BackupId": "System.String",
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
}
},
"ValidateNotNullOrEmpty": true
@@ -40020,25 +46463,10 @@
},
{
"ParameterMetadata": {
- "Name": "UsageThreshold",
- "Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
- },
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ServiceLevel",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -40046,21 +46474,21 @@
},
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ExportPolicy",
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
- }
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -40071,17 +46499,11 @@
},
{
"ParameterMetadata": {
- "Name": "Backup",
+ "Name": "QuotaSize",
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "PolicyEnforced": "System.Nullable`1[System.Boolean]",
- "BackupEnabled": "System.Nullable`1[System.Boolean]",
- "BackupPolicyId": "System.String",
- "VaultId": "System.String"
- }
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
"ValidateNotNullOrEmpty": true
},
@@ -40092,16 +46514,13 @@
},
{
"ParameterMetadata": {
- "Name": "ThroughputMibps",
+ "Name": "QuotaType",
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Double]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Double"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -40110,7 +46529,7 @@
},
{
"ParameterMetadata": {
- "Name": "SnapshotPolicyId",
+ "Name": "QuotaTarget",
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -40125,11 +46544,22 @@
},
{
"ParameterMetadata": {
- "Name": "IsDefaultQuotaEnabled",
+ "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=7.0.6.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": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ }
},
"ValidateNotNullOrEmpty": false
},
@@ -40137,39 +46567,56 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "ByObjectParameterSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultUserQuotaInKiB",
+ "Name": "InputObject",
"Type": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UseExistingSnapshot": "System.Nullable`1[System.Boolean]",
+ "CreationDate": "System.Nullable`1[System.DateTime]",
+ "Size": "System.Nullable`1[System.Int64]",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "BackupId": "System.String",
+ "Label": "System.String",
+ "BackupType": "System.String",
+ "ProvisioningState": "System.String",
+ "VolumeName": "System.String"
+ }
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DefaultGroupQuotaInKiB",
+ "Name": "Name",
+ "AliasList": [
+ "SubvolumeName"
+ ],
"Type": {
"Namespace": "System",
- "Name": "System.Nullable`1[System.Int64]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "System.Int64"
- ]
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -40194,13 +46641,43 @@
},
{
"ParameterMetadata": {
- "Name": "UnixPermission",
+ "Name": "QuotaSize",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaType",
"Type": {
"Namespace": "System",
"Name": "System.String",
"AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
},
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaTarget",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
@@ -40237,7 +46714,7 @@
}
],
"AliasList": [
- "Update-AnfVolume"
+ "Update-AnfVolumeQuotaRule"
]
}
],
@@ -40287,7 +46764,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Replication": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject",
"Backup": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties",
@@ -40326,7 +46803,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationObject, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ReplicationId": "System.String",
"EndpointType": "System.String",
@@ -40372,7 +46849,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnforced": "System.Nullable`1[System.Boolean]",
"BackupEnabled": "System.Nullable`1[System.Boolean]",
@@ -40420,7 +46897,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotPolicyId": "System.String"
},
@@ -40457,7 +46934,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[]"
},
@@ -40494,13 +46971,13 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule"
},
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesExportPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UnixReadOnly": "System.Nullable`1[System.Boolean]",
"UnixReadWrite": "System.Nullable`1[System.Boolean]",
@@ -40559,7 +47036,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedAt": "System.Nullable`1[System.DateTime]",
"LastModifiedAt": "System.Nullable`1[System.DateTime]",
@@ -40614,7 +47091,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.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.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs"
]
@@ -40622,7 +47099,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Key": "System.String",
"Value": "System.String"
@@ -40816,10 +47293,215 @@
"Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription"
]
},
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity]",
+ "PrincipalId": "System.String",
+ "TenantId": "System.String",
+ "Type": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "GenericTypeArguments": [
+ "System.String",
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity"
+ ]
+ },
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PrincipalId": "System.String",
+ "ClientId": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccountEncryption, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity",
+ "KeyVaultProperties": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties",
+ "KeySource": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSEncryptionIdentity, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PrincipalId": "System.String",
+ "UserAssignedIdentity": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties": {
+ "Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesKeyVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "KeyVaultId": "System.String",
+ "KeyVaultUri": "System.String",
+ "KeyName": "System.String",
+ "KeyVaultResourceId": "System.String",
+ "Status": "System.String"
+ },
+ "Methods": [
+ {
+ "Name": "GetType",
+ "ReturnType": "System.Type"
+ },
+ {
+ "Name": "ToString",
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Object"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "ReturnType": "System.Int32"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": ""
+ }
+ ]
+ },
"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.9.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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory"
]
@@ -40827,7 +47509,7 @@
"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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LdapSearchScope": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
"Administrators": "System.Collections.Generic.IList`1[System.String]",
@@ -40887,7 +47569,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesLdapSearchScopeOpt, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserDN": "System.String",
"GroupDN": "System.String",
@@ -40926,7 +47608,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.9.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.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup"
]
@@ -40934,7 +47616,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackup, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PolicyEnabled": "System.Nullable`1[System.Boolean]",
"BackupsCount": "System.Nullable`1[System.Int32]",
@@ -40973,7 +47655,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -41013,7 +47695,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Minute": "System.Nullable`1[System.Int32]",
@@ -41052,7 +47734,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -41093,7 +47775,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.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SnapshotsToKeep": "System.Nullable`1[System.Int32]",
"Hour": "System.Nullable`1[System.Int32]",
@@ -41134,7 +47816,7 @@
"Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
"Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupMetaData, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GlobalPlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
"VolumesCount": "System.Nullable`1[System.Int64]",
@@ -41176,7 +47858,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.Management.NetApp, Version=1.16.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.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs"
]
@@ -41184,7 +47866,7 @@
"Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs": {
"Namespace": "Microsoft.Azure.Management.NetApp.Models",
"Name": "Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.Management.NetApp, Version=1.16.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs, Microsoft.Azure.PowerShell.NetAppFiles.Management.Sdk, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Key": "System.String",
"Value": "System.String"
@@ -41236,119 +47918,77 @@
}
]
},
- "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties]": {
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume]": {
"Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.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.Commands.NetAppFiles.Models.PSNetAppFilesVolume]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
- "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties"
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume"
]
},
- "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties": {
+ "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume": {
"Namespace": "Microsoft.Azure.Commands.NetAppFiles.Models",
- "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeGroupVolumeProperties, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Name": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume, Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles, Version=0.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DataProtection": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeDataProtection",
"ExportPolicy": "Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeExportPolicy",
- "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "MountTargets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.MountTargetProperties]",
- "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.PlacementKeyValuePairs]",
+ "SystemData": "Microsoft.Azure.Commands.NetAppFiles.Models.PSSystemData",
+ "PlacementRules": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.NetAppFiles.Models.PSKeyValuePairs]",
"ProtocolTypes": "System.Collections.Generic.IList`1[System.String]",
- "UsageThreshold": "System.Int64",
+ "Zones": "System.Collections.Generic.IList`1[System.String]",
+ "IsRestoring": "System.Nullable`1[System.Boolean]",
"SnapshotDirectoryVisible": "System.Nullable`1[System.Boolean]",
+ "KerberosEnabled": "System.Nullable`1[System.Boolean]",
"SmbEncryption": "System.Nullable`1[System.Boolean]",
"LdapEnabled": "System.Nullable`1[System.Boolean]",
- "KerberosEnabled": "System.Nullable`1[System.Boolean]",
- "IsRestoring": "System.Nullable`1[System.Boolean]",
"CoolAccess": "System.Nullable`1[System.Boolean]",
- "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
+ "Encrypted": "System.Nullable`1[System.Boolean]",
+ "DeleteBaseSnapshot": "System.Nullable`1[System.Boolean]",
"SmbContinuouslyAvailable": "System.Nullable`1[System.Boolean]",
+ "IsDefaultQuotaEnabled": "System.Nullable`1[System.Boolean]",
"ThroughputMibps": "System.Nullable`1[System.Double]",
- "CloneProgress": "System.Nullable`1[System.Int32]",
"CoolnessPeriod": "System.Nullable`1[System.Int32]",
- "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "CloneProgress": "System.Nullable`1[System.Int32]",
+ "UsageThreshold": "System.Nullable`1[System.Int64]",
"DefaultGroupQuotaInKiBs": "System.Nullable`1[System.Int64]",
"MaximumNumberOfFiles": "System.Nullable`1[System.Int64]",
- "AvsDataStore": "System.String",
- "UnixPermissions": "System.String",
- "VolumeGroupName": "System.String",
- "CapacityPoolResourceId": "System.String",
+ "DefaultUserQuotaInKiBs": "System.Nullable`1[System.Int64]",
+ "MountTargets": "System.Object",
+ "Tags": "System.Object",
+ "StorageToNetworkProximity": "System.String",
"ProximityPlacementGroup": "System.String",
+ "NetworkSiblingSetId": "System.String",
+ "NetworkFeatures": "System.String",
"T2Network": "System.String",
"VolumeSpecName": "System.String",
+ "EnableSubvolumes": "System.String",
+ "KeyVaultPrivateEndpointResourceId": "System.String",
+ "VolumeGroupName": "System.String",
+ "CapacityPoolResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "UnixPermission": "System.String",
+ "Location": "System.String",
"Id": "System.String",
- "SecurityStyle": "System.String",
"Name": "System.String",
"Type": "System.String",
+ "Etag": "System.String",
+ "ProvisioningState": "System.String",
"FileSystemId": "System.String",
"CreationToken": "System.String",
"ServiceLevel": "System.String",
- "ProvisioningState": "System.String",
- "EncryptionKeySource": "System.String",
"SnapshotId": "System.String",
"BaremetalTenantId": "System.String",
"SubnetId": "System.String",
- "NetworkFeatures": "System.String",
- "NetworkSiblingSetId": "System.String",
- "StorageToNetworkProximity": "System.String",
"VolumeType": "System.String",
"BackupId": "System.String",
- "EnableSubvolumes": "System.String"
- },
- "Methods": [
- {
- "Name": "GetType",
- "ReturnType": "System.Type"
- },
- {
- "Name": "ToString",
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Object"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "ReturnType": "System.Int32"
- }
- ],
- "Constructors": [
- {
- "Name": ""
- }
- ]
- },
- "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.MountTargetProperties]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.NetApp.Models.MountTargetProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.NetApp.Models.MountTargetProperties, Microsoft.Azure.Management.NetApp, Version=1.16.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "GenericTypeArguments": [
- "Microsoft.Azure.Management.NetApp.Models.MountTargetProperties"
- ]
- },
- "Microsoft.Azure.Management.NetApp.Models.MountTargetProperties": {
- "Namespace": "Microsoft.Azure.Management.NetApp.Models",
- "Name": "Microsoft.Azure.Management.NetApp.Models.MountTargetProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.NetApp.Models.MountTargetProperties, Microsoft.Azure.Management.NetApp, Version=1.16.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "MountTargetId": "System.String",
- "FileSystemId": "System.String",
- "IpAddress": "System.String",
- "SmbServerFqdn": "System.String"
+ "SecurityStyle": "System.String",
+ "SmbAccessBasedEnumeration": "System.String",
+ "EncryptionKeySource": "System.String",
+ "AvsDataStore": "System.String",
+ "SmbNonBrowsable": "System.String"
},
"Methods": [
- {
- "Name": "Validate",
- "ReturnType": "System.Void"
- },
{
"Name": "GetType",
"ReturnType": "System.Type"
@@ -41375,27 +48015,6 @@
"Constructors": [
{
"Name": ""
- },
- {
- "Name": "",
- "Parameters": [
- {
- "Name": "fileSystemId",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "mountTargetId",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "ipAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "smbServerFqdn",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
}
]
}
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Network.json b/tools/Tools.Common/SerializedCmdlets/Az.Network.json
index c612aced83ed..fa64f3cde9d4 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.Network.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.Network.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.Network",
- "ModuleVersion": "5.2.0",
+ "ModuleVersion": "5.3.0",
"Cmdlets": [
{
"VerbName": "Add",
@@ -16,7 +16,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -125,7 +125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245,7 +245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -395,7 +395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -504,7 +504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -635,7 +635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -802,7 +802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -911,7 +911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1040,7 +1040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -1062,7 +1062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -1089,7 +1089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -1099,7 +1099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -1171,7 +1171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1336,7 +1336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -1370,7 +1370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -1403,7 +1403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -1419,7 +1419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -1536,7 +1536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1645,7 +1645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1770,7 +1770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -1797,7 +1797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -1851,7 +1851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2012,7 +2012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -2045,7 +2045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -2129,7 +2129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -2175,7 +2175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2295,7 +2295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2445,7 +2445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2554,7 +2554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2657,7 +2657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -2706,7 +2706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -2725,16 +2725,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -2745,7 +2746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -2798,7 +2799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3001,7 +3002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3144,7 +3145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -3190,7 +3191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -3209,16 +3210,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -3235,7 +3237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -3259,7 +3261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3394,7 +3396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3503,7 +3505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3623,7 +3625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3773,7 +3775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3882,7 +3884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3976,7 +3978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -4009,7 +4011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -4044,7 +4046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -4069,7 +4071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -4098,7 +4100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -4163,7 +4165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -4199,7 +4201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -4365,7 +4367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -4487,7 +4489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -4653,7 +4655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -4700,7 +4702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -4730,7 +4732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -4753,7 +4755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -4784,7 +4786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -4810,7 +4812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -4836,7 +4838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5002,7 +5004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -5056,7 +5058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -5102,7 +5104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -5177,7 +5179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -5282,7 +5284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5391,7 +5393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5485,7 +5487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -5551,7 +5553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5694,7 +5696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5822,7 +5824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -5868,7 +5870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6003,7 +6005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6112,7 +6114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6206,7 +6208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -6239,7 +6241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -6265,7 +6267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -6294,7 +6296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -6353,7 +6355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6560,7 +6562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6707,7 +6709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -6737,7 +6739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -6760,7 +6762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -6786,7 +6788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -6812,7 +6814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6966,7 +6968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7075,7 +7077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7160,7 +7162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -7196,7 +7198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7293,7 +7295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -7347,7 +7349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7456,7 +7458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7632,7 +7634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -7672,7 +7674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7914,7 +7916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -7972,7 +7974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8081,7 +8083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8190,7 +8192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -8280,7 +8282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8480,7 +8482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8665,7 +8667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -8702,7 +8704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8902,7 +8904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9094,7 +9096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9203,7 +9205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9324,7 +9326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -9364,7 +9366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -9404,7 +9406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -9433,7 +9435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -9467,7 +9469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -9494,7 +9496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -9547,7 +9549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9804,7 +9806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9971,7 +9973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10008,7 +10010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10045,7 +10047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -10071,7 +10073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10102,7 +10104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -10126,7 +10128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -10159,7 +10161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -10333,7 +10335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -10442,7 +10444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -10527,7 +10529,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -10565,7 +10567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -10662,7 +10664,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -10718,7 +10720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -10827,7 +10829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -10948,7 +10950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -10981,7 +10983,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -11015,7 +11017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -11061,7 +11063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11273,7 +11275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11440,7 +11442,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -11470,7 +11472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -11501,7 +11503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -11527,7 +11529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11701,7 +11703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11810,7 +11812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11948,7 +11950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12128,7 +12130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12237,7 +12239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12322,7 +12324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -12340,7 +12342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -12353,7 +12355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -12389,7 +12391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12486,7 +12488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -12510,7 +12512,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -12529,7 +12531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -12583,7 +12585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12692,7 +12694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12812,7 +12814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12962,7 +12964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13071,7 +13073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13191,7 +13193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13341,7 +13343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13450,7 +13452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13535,7 +13537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -13554,7 +13556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -13583,7 +13585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -13614,7 +13616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -13650,7 +13652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -13703,7 +13705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13800,7 +13802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -13892,7 +13894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13989,7 +13991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -14036,7 +14038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -14062,7 +14064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -14099,7 +14101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -14123,7 +14125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -14220,7 +14222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -14267,7 +14269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -14291,7 +14293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -14324,7 +14326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -14421,7 +14423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -14498,7 +14500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -14595,7 +14597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -14649,7 +14651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -14768,7 +14770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -14864,7 +14866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -14948,7 +14950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15032,7 +15034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15115,7 +15117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15201,7 +15203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15285,7 +15287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15408,7 +15410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15566,7 +15568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15701,7 +15703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15785,7 +15787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -15923,7 +15925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -16011,7 +16013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -16295,7 +16297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -16549,7 +16551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -16595,7 +16597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -16856,7 +16858,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -16930,7 +16932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -17112,7 +17114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -17363,7 +17365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -17423,7 +17425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -17498,7 +17500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -17576,7 +17578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -17648,7 +17650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -17696,7 +17698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -17732,7 +17734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -17792,7 +17794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -17846,7 +17848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -17918,7 +17920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -18007,7 +18009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -18056,7 +18058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -18075,16 +18077,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -18104,7 +18107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -18174,7 +18177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -18330,7 +18333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -18376,7 +18379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -18547,7 +18550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -18684,7 +18687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -18806,7 +18809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -18825,16 +18828,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -18851,7 +18855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -18988,7 +18992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -19110,7 +19114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -19151,7 +19155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -19280,7 +19284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -19352,7 +19356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -19472,7 +19476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -19534,7 +19538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -19745,7 +19749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -19941,7 +19945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -19983,7 +19987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -20186,7 +20190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -20258,7 +20262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -20369,7 +20373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -20438,7 +20442,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -20489,7 +20493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -20736,7 +20740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -20953,7 +20957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -20995,7 +20999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -21026,7 +21030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -21250,7 +21254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -21322,7 +21326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -21406,7 +21410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -21425,7 +21429,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -21476,7 +21480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -21596,7 +21600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -21658,7 +21662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -21778,7 +21782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -21825,7 +21829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -21856,7 +21860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -21976,7 +21980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -22030,7 +22034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -22102,7 +22106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -22233,7 +22237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -22424,7 +22428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -22496,7 +22500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -22625,7 +22629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -22671,7 +22675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -22690,7 +22694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -22739,7 +22743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -22996,7 +23000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -23207,7 +23211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -23249,7 +23253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -23265,7 +23269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -23294,7 +23298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -23512,7 +23516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -23609,7 +23613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -23692,7 +23696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -23741,7 +23745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -23760,16 +23764,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -23790,7 +23795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -23810,7 +23815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -23830,7 +23835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -23850,7 +23855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -23910,7 +23915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -24148,7 +24153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -24277,7 +24282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -24323,7 +24328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -24342,16 +24347,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -24368,7 +24374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -24384,7 +24390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -24400,7 +24406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -24416,7 +24422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -24462,7 +24468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -24598,7 +24604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -24686,7 +24692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -24747,7 +24753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -24800,7 +24806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -24910,7 +24916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -25005,7 +25011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -25038,7 +25044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -25140,7 +25146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -25227,7 +25233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -25322,7 +25328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -25332,7 +25338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -25438,7 +25444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -25659,7 +25665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -25675,7 +25681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -25706,7 +25712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -25974,7 +25980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -26202,7 +26208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -26269,7 +26275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -26357,7 +26363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -26487,7 +26493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -26553,7 +26559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -26657,7 +26663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -26809,7 +26815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -27241,7 +27247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -27291,7 +27297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -27362,7 +27368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -27469,7 +27475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -27544,7 +27550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -27638,7 +27644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -27753,7 +27759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -27967,7 +27973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -28026,7 +28032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -28087,7 +28093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -28157,7 +28163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -28238,7 +28244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -28313,7 +28319,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -28362,7 +28368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -28381,16 +28387,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -28427,7 +28434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -28572,7 +28579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -28687,7 +28694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -28733,7 +28740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -28752,16 +28759,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -28778,7 +28786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -28900,7 +28908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -28977,7 +28985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -29115,7 +29123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -29292,7 +29300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -29377,7 +29385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -29439,7 +29447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -29477,7 +29485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -29518,7 +29526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -29557,7 +29565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -29567,7 +29575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -29595,7 +29603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -29646,7 +29654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -29727,7 +29735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -29743,7 +29751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -29789,7 +29797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -29899,7 +29907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -29980,7 +29988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -29996,7 +30004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -30042,7 +30050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -30089,7 +30097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -30124,7 +30132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -30159,7 +30167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -30209,7 +30217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -30290,7 +30298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -30306,7 +30314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -30352,7 +30360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -30406,7 +30414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -30837,7 +30845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -31052,7 +31060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -31267,7 +31275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -31627,7 +31635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -31987,7 +31995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCommit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCommit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCommit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetLocations": "System.Collections.Generic.IList`1[System.String]",
"ConfigurationIds": "System.Collections.Generic.IList`1[System.String]",
@@ -32239,7 +32247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -32338,7 +32346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -32630,7 +32638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -32829,7 +32837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -32937,7 +32945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -33256,7 +33264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -33471,7 +33479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -33698,7 +33706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -33757,7 +33765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -33874,7 +33882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -33994,7 +34002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -34040,7 +34048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34142,7 +34150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34262,7 +34270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableServerVariable": "System.Collections.Generic.IList`1[System.String]",
"AvailableRequestHeader": "System.Collections.Generic.IList`1[System.String]",
@@ -34448,7 +34456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PredefinedPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"AvailableCipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -34576,7 +34584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]",
"ValueText": "System.String"
@@ -34690,7 +34698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -34760,7 +34768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34877,7 +34885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34997,7 +35005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]",
"BackendAddressPoolsText": "System.String"
@@ -35288,7 +35296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -35373,7 +35381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35490,7 +35498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35613,7 +35621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -35691,7 +35699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35808,7 +35816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35928,7 +35936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -35974,7 +35982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -36020,7 +36028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -36084,7 +36092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -36130,7 +36138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -36187,7 +36195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -36262,7 +36270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -36317,7 +36325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -36434,7 +36442,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -36554,7 +36562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -36730,7 +36738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -36796,7 +36804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -36913,7 +36921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -37033,7 +37041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -37092,7 +37100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -37209,7 +37217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -37329,7 +37337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -37402,7 +37410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -37519,7 +37527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -37639,7 +37647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -37694,7 +37702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -37766,7 +37774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -37841,7 +37849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -37889,7 +37897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -37991,7 +37999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -38111,7 +38119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -38171,7 +38179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -38288,7 +38296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -38408,7 +38416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -38475,7 +38483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -38592,7 +38600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -38712,7 +38720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -38763,7 +38771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -38874,7 +38882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39009,7 +39017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -39078,7 +39086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39195,7 +39203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39315,7 +39323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -39384,7 +39392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39501,7 +39509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39621,7 +39629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -39693,7 +39701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39810,7 +39818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -39930,7 +39938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -39994,7 +40002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40111,7 +40119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40231,7 +40239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -40297,7 +40305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40414,7 +40422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40534,7 +40542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -40581,7 +40589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40683,7 +40691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40803,7 +40811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -40865,7 +40873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -40982,7 +40990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -41102,7 +41110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -41153,7 +41161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -41255,7 +41263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -41375,7 +41383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
"MinProtocolVersion": "System.String",
@@ -41516,7 +41524,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -41578,7 +41586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -41695,7 +41703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -41815,7 +41823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -41866,7 +41874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -41912,7 +41920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -41976,7 +41984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ValidatedCertData": "System.String",
@@ -42037,7 +42045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42154,7 +42162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42274,7 +42282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -42333,7 +42341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42450,7 +42458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42570,7 +42578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -42637,7 +42645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42754,7 +42762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42874,7 +42882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWafDynamicManifests",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWafDynamicManifests, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWafDynamicManifests, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet]",
"DefaultRuleSetVersion": "System.String",
@@ -43009,7 +43017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -43064,7 +43072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -43166,7 +43174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -43286,7 +43294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -43458,7 +43466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkService": "System.String"
},
@@ -43615,7 +43623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -43776,7 +43784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -43912,7 +43920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -44049,7 +44057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -44124,7 +44132,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSBastion]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSBastion"
]
@@ -44392,7 +44400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpCommunities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]",
"Name": "System.String",
@@ -44506,7 +44514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -44780,14 +44788,14 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
- "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
+ "PublicIPAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
"VirtualNetworksText": "System.String",
- "PublicIpAddressesText": "System.String",
+ "PublicIPAddressesText": "System.String",
"ResourceGroupName": "System.String",
"Location": "System.String",
"ResourceGuid": "System.String",
@@ -44987,7 +44995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"ProvisioningState": "System.String",
@@ -45046,7 +45054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -45127,7 +45135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -45211,7 +45219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Association": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -45375,7 +45383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"AddressPrefix": "System.Collections.Generic.List`1[System.String]",
@@ -45562,7 +45570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -45755,7 +45763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Age": "System.Nullable`1[System.Int32]",
"InterfaceProperty": "System.String",
@@ -45839,7 +45847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -45928,7 +45936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -45981,7 +45989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -46040,7 +46048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46123,7 +46131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46209,7 +46217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IPv6CircuitConnectionConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig",
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46275,7 +46283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46358,7 +46366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46444,7 +46452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -46523,7 +46531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46606,7 +46614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46692,7 +46700,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"Network": "System.String",
@@ -46777,7 +46785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -46866,7 +46874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -46919,7 +46927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"V": "System.Nullable`1[System.Int32]",
"AsProperty": "System.Nullable`1[System.Int32]",
@@ -47004,7 +47012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -47093,7 +47101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -47146,7 +47154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryBytesIn": "System.Nullable`1[System.Int64]",
"PrimaryBytesOut": "System.Nullable`1[System.Int64]",
@@ -47351,7 +47359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -47427,7 +47435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -47588,7 +47596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -47796,7 +47804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -47973,7 +47981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Age": "System.Nullable`1[System.Int32]",
"InterfaceProperty": "System.String",
@@ -48043,7 +48051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -48089,7 +48097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -48182,7 +48190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -48232,7 +48240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -48290,7 +48298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -48360,7 +48368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -48417,7 +48425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -48490,7 +48498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -48563,7 +48571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -48639,7 +48647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"Network": "System.String",
@@ -48710,7 +48718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -48756,7 +48764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -48849,7 +48857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -48899,7 +48907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -48957,7 +48965,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -49027,7 +49035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -49084,7 +49092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -49171,7 +49179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -49217,7 +49225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -49310,7 +49318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -49360,7 +49368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -49418,7 +49426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -49488,7 +49496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateSet": [
"Primary",
@@ -49545,7 +49553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -49817,7 +49825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50088,7 +50096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -50148,7 +50156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50223,7 +50231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50301,7 +50309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -50349,7 +50357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50409,7 +50417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50487,7 +50495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
"RouterName": "System.String",
@@ -50552,7 +50560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50636,7 +50644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50707,7 +50715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50793,7 +50801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -50871,7 +50879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableBandwidths": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]",
"Tag": "System.Collections.Hashtable",
@@ -51017,7 +51025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BandwidthsOffered": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]",
"PeeringLocations": "System.Collections.Generic.List`1[System.String]",
@@ -51133,7 +51141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
@@ -51436,7 +51444,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewall"
]
@@ -51570,7 +51578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"FqdnTagName": "System.String",
@@ -51621,7 +51629,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag"
]
@@ -51701,7 +51709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpPrefixes": "System.Collections.Generic.IList`1[System.String]"
},
@@ -51743,7 +51751,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix"
]
@@ -51877,7 +51885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -52149,7 +52157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -52225,7 +52233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -52392,7 +52400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -52548,7 +52556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
@@ -52861,7 +52869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -52914,7 +52922,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSIpGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSIpGroup"
]
@@ -53134,7 +53142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -53443,7 +53451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRulePortMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendPort": "System.Nullable`1[System.Int32]",
"BackendPort": "System.Nullable`1[System.Int32]",
@@ -53518,7 +53526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -53731,7 +53739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -53981,7 +53989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -54078,7 +54086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -54243,7 +54251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -54403,7 +54411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -54473,7 +54481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -54547,7 +54555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -54645,7 +54653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -54738,7 +54746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -54812,7 +54820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -54910,7 +54918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -54979,7 +54987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55053,7 +55061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55151,7 +55159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -55221,7 +55229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55295,7 +55303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55393,7 +55401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -55453,7 +55461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55527,7 +55535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55625,7 +55633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -55701,7 +55709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55775,7 +55783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -55873,7 +55881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -55945,7 +55953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -56019,7 +56027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -56117,7 +56125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -56295,7 +56303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -56607,7 +56615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -57254,7 +57262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
@@ -57353,7 +57361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -57437,7 +57445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -57524,7 +57532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -57797,7 +57805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
@@ -58070,7 +58078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfigurationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration]",
"SkipToken": "System.String",
@@ -58279,7 +58287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveSecurityAdminRuleResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule]",
"SkipToken": "System.String",
@@ -58488,7 +58496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -58831,7 +58839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatusResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatusResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatusResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus]",
"SkipToken": "System.String",
@@ -59066,7 +59074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfigurationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration]",
"SkipToken": "System.String",
@@ -59249,7 +59257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveSecurityAdminRuleResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule]",
"SkipToken": "System.String",
@@ -59432,7 +59440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -59768,7 +59776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -60052,7 +60060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -60391,7 +60399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]",
@@ -60731,7 +60739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -61189,7 +61197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -61594,7 +61602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -61986,7 +61994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -62216,7 +62224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -62627,7 +62635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -62942,7 +62950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -63012,7 +63020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -63091,7 +63099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -63179,7 +63187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]",
"Name": "System.String",
@@ -63317,7 +63325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceType": "System.String"
},
@@ -63450,7 +63458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -63717,7 +63725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableScaleUnits": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]",
"AvailableVersions": "System.Collections.Generic.IList`1[System.String]",
@@ -63886,7 +63894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -64144,7 +64152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -64202,7 +64210,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -64261,7 +64269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -64356,7 +64364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -64659,7 +64667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]",
"StatesText": "System.String"
@@ -64705,7 +64713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -64762,7 +64770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -64830,7 +64838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -65155,7 +65163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -65281,7 +65289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -65345,7 +65353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -65440,7 +65448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -65743,7 +65751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -65796,7 +65804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -65891,7 +65899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -66217,7 +66225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NextHopType": "System.String",
"NextHopIpAddress": "System.String",
@@ -66264,7 +66272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -66386,7 +66394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -66892,7 +66900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
"StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
@@ -66968,7 +66976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -67063,7 +67071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -67389,7 +67397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]",
"CountriesText": "System.String"
@@ -67435,7 +67443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -67568,7 +67576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -68201,7 +68209,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProviderLocation": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation",
"ReachabilityReport": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]",
@@ -68250,7 +68258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -68411,7 +68419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -69274,7 +69282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]",
"NetworkInterfacesText": "System.String"
@@ -69320,7 +69328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -69415,7 +69423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -69741,7 +69749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopology",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Resources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]",
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -69790,7 +69798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -69876,7 +69884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -70142,7 +70150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
"Tag": "System.Collections.Hashtable",
@@ -70204,7 +70212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -70290,7 +70298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -70556,7 +70564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -70772,7 +70780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -70861,7 +70869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -70995,7 +71003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -71148,7 +71156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SasUrl": "System.String"
},
@@ -71217,7 +71225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -71401,7 +71409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -71647,7 +71655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProfileUrl": "System.String"
},
@@ -71716,7 +71724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -71882,7 +71890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -72092,7 +72100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
"ProvisioningState": "System.String",
@@ -72376,7 +72384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -72699,7 +72707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -73129,7 +73137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequiredMembers": "System.Collections.Generic.List`1[System.String]",
"RequiredZoneNames": "System.Collections.Generic.List`1[System.String]",
@@ -73475,7 +73483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -73783,7 +73791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -73802,16 +73810,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
},
"Methods": [
@@ -74391,7 +74400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -74663,7 +74672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -74714,7 +74723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -74775,7 +74784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -74860,7 +74869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -75163,7 +75172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -75222,7 +75231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -75288,7 +75297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -75357,7 +75366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -75631,7 +75640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -75909,7 +75918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -75990,7 +75999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -76136,7 +76145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -76258,7 +76267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -76339,7 +76348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -76485,7 +76494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -76607,7 +76616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -76911,7 +76920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -76988,7 +76997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -77169,7 +77178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -77391,7 +77400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destinations": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -77440,7 +77449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -77492,7 +77501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -77568,7 +77577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -77829,7 +77838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -78093,7 +78102,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -78153,7 +78162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -78219,7 +78228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -78288,7 +78297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -78370,7 +78379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -78551,7 +78560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -78773,7 +78782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
"AddressPrefix": "System.String",
@@ -79051,7 +79060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -79275,7 +79284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -79365,7 +79374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -79550,7 +79559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -79714,7 +79723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -79791,7 +79800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -79972,7 +79981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -80194,7 +80203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -80272,7 +80281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -80452,7 +80461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -80674,7 +80683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -80987,7 +80996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -81122,7 +81131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -81321,7 +81330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -81538,7 +81547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Asn": "System.Nullable`1[System.Int32]",
"RoutesReceived": "System.Nullable`1[System.Int64]",
@@ -81756,7 +81765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -81959,7 +81968,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa"
]
@@ -81997,7 +82006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -82173,7 +82182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -82725,7 +82734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -82918,7 +82927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -82999,7 +83008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -83187,7 +83196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -83548,7 +83557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnConnectionDuration": "System.Nullable`1[System.Int64]",
"MaxBandwidth": "System.Nullable`1[System.Int64]",
@@ -83631,7 +83640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -83869,7 +83878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -84022,7 +84031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -84226,7 +84235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -84336,7 +84345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -84429,7 +84438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -84593,7 +84602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -84851,7 +84860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName",
"CurrentValue": "System.Double",
@@ -85013,7 +85022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -85286,7 +85295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -85564,7 +85573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -85645,7 +85654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -85791,7 +85800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -85913,7 +85922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -85994,7 +86003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -86140,7 +86149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -86262,7 +86271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -86468,7 +86477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SasUrl": "System.String"
},
@@ -86538,7 +86547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -86593,7 +86602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite"
},
"ValidateNotNullOrEmpty": true
@@ -86663,7 +86672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite"
},
"ValidateNotNullOrEmpty": true
@@ -86824,7 +86833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -86854,7 +86863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite"
},
"ValidateNotNullOrEmpty": true
@@ -86919,7 +86928,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -87029,7 +87038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite"
},
"ValidateNotNullOrEmpty": true
@@ -87224,7 +87233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]",
"VpnServerConfigurationResourceIdsText": "System.String"
@@ -87294,7 +87303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -87423,7 +87432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -87571,7 +87580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProfileUrl": "System.String"
},
@@ -87640,7 +87649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -87676,7 +87685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -87800,7 +87809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -88000,7 +88009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -88030,7 +88039,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -88132,7 +88141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -88245,7 +88254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -88484,7 +88493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnProfileSASUrl": "System.String"
},
@@ -88647,7 +88656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -88974,7 +88983,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -89165,7 +89174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -89356,7 +89365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -89446,7 +89455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -89615,7 +89624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -89826,7 +89835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -90039,7 +90048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -90124,7 +90133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -90293,7 +90302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -90504,7 +90513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -90731,7 +90740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsDefault": "System.Boolean",
"P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -90824,7 +90833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -91044,7 +91053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -91219,7 +91228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -91432,7 +91441,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa"
]
@@ -91497,7 +91506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"UseLocalAzureIpAddress": "System.Boolean",
@@ -91692,7 +91701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"UseLocalAzureIpAddress": "System.Boolean",
@@ -91890,7 +91899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]",
"ResultsText": "System.String"
@@ -91936,7 +91945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -92014,7 +92023,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile"
]
@@ -92061,7 +92070,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -92118,7 +92127,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile"
]
@@ -92245,7 +92254,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile"
]
@@ -92354,7 +92363,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile"
]
@@ -92463,7 +92472,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile"
]
@@ -92557,7 +92566,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile"
]
@@ -92628,7 +92637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -92941,7 +92950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -93080,7 +93089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -93094,7 +93103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -93112,7 +93121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -93122,7 +93131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93132,7 +93141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93142,7 +93151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93152,7 +93161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93162,7 +93171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -93172,7 +93181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
},
"ValidateNotNullOrEmpty": false
@@ -93182,7 +93191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
},
"ValidateNotNullOrEmpty": false
@@ -93192,7 +93201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -93202,7 +93211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
},
"ValidateNotNullOrEmpty": false
@@ -93212,7 +93221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
},
"ValidateNotNullOrEmpty": false
@@ -93222,7 +93231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
},
"ValidateNotNullOrEmpty": false
@@ -93232,7 +93241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
},
"ValidateNotNullOrEmpty": false
@@ -93242,7 +93251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
},
"ValidateNotNullOrEmpty": false
@@ -93252,7 +93261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
},
"ValidateNotNullOrEmpty": false
@@ -93262,7 +93271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -93272,7 +93281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -93282,7 +93291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
},
"ValidateNotNullOrEmpty": false
@@ -93292,7 +93301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -93302,7 +93311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -93333,7 +93342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -93358,7 +93367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -93429,7 +93438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -93462,7 +93471,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -93472,7 +93481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -93556,7 +93565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -93576,7 +93585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -93600,7 +93609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -93616,7 +93625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93632,7 +93641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93648,7 +93657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93664,7 +93673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -93680,7 +93689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -93696,7 +93705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
},
"ValidateNotNullOrEmpty": false
@@ -93712,7 +93721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
},
"ValidateNotNullOrEmpty": false
@@ -93728,7 +93737,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -93744,7 +93753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
},
"ValidateNotNullOrEmpty": false
@@ -93760,7 +93769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
},
"ValidateNotNullOrEmpty": false
@@ -93776,7 +93785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
},
"ValidateNotNullOrEmpty": false
@@ -93792,7 +93801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
},
"ValidateNotNullOrEmpty": false
@@ -93808,7 +93817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
},
"ValidateNotNullOrEmpty": false
@@ -93824,7 +93833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
},
"ValidateNotNullOrEmpty": false
@@ -93840,7 +93849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -93856,7 +93865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -93872,7 +93881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
},
"ValidateNotNullOrEmpty": false
@@ -93888,7 +93897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -93904,7 +93913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -93932,7 +93941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -94057,7 +94066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -94073,7 +94082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -94183,7 +94192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -94203,7 +94212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -94227,7 +94236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -94243,7 +94252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94259,7 +94268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94275,7 +94284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94291,7 +94300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94307,7 +94316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -94323,7 +94332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
},
"ValidateNotNullOrEmpty": false
@@ -94339,7 +94348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
},
"ValidateNotNullOrEmpty": false
@@ -94355,7 +94364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -94371,7 +94380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
},
"ValidateNotNullOrEmpty": false
@@ -94387,7 +94396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
},
"ValidateNotNullOrEmpty": false
@@ -94403,7 +94412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
},
"ValidateNotNullOrEmpty": false
@@ -94419,7 +94428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
},
"ValidateNotNullOrEmpty": false
@@ -94435,7 +94444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
},
"ValidateNotNullOrEmpty": false
@@ -94451,7 +94460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
},
"ValidateNotNullOrEmpty": false
@@ -94467,7 +94476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -94483,7 +94492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -94499,7 +94508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
},
"ValidateNotNullOrEmpty": false
@@ -94515,7 +94524,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -94531,7 +94540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -94559,7 +94568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -94684,7 +94693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -94700,7 +94709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -94747,7 +94756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -94826,7 +94835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -94846,7 +94855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -94870,7 +94879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -94886,7 +94895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94902,7 +94911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94918,7 +94927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94934,7 +94943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -94950,7 +94959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -94966,7 +94975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
},
"ValidateNotNullOrEmpty": false
@@ -94982,7 +94991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
},
"ValidateNotNullOrEmpty": false
@@ -94998,7 +95007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -95014,7 +95023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
},
"ValidateNotNullOrEmpty": false
@@ -95030,7 +95039,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
},
"ValidateNotNullOrEmpty": false
@@ -95046,7 +95055,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
},
"ValidateNotNullOrEmpty": false
@@ -95062,7 +95071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
},
"ValidateNotNullOrEmpty": false
@@ -95078,7 +95087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
},
"ValidateNotNullOrEmpty": false
@@ -95094,7 +95103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
},
"ValidateNotNullOrEmpty": false
@@ -95110,7 +95119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -95126,7 +95135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -95142,7 +95151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
},
"ValidateNotNullOrEmpty": false
@@ -95158,7 +95167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -95174,7 +95183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -95202,7 +95211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -95327,7 +95336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -95343,7 +95352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -95456,7 +95465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -95476,7 +95485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -95500,7 +95509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -95516,7 +95525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -95532,7 +95541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -95548,7 +95557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -95564,7 +95573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -95580,7 +95589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -95596,7 +95605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
},
"ValidateNotNullOrEmpty": false
@@ -95612,7 +95621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
},
"ValidateNotNullOrEmpty": false
@@ -95628,7 +95637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -95644,7 +95653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
},
"ValidateNotNullOrEmpty": false
@@ -95660,7 +95669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
},
"ValidateNotNullOrEmpty": false
@@ -95676,7 +95685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
},
"ValidateNotNullOrEmpty": false
@@ -95692,7 +95701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
},
"ValidateNotNullOrEmpty": false
@@ -95708,7 +95717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
},
"ValidateNotNullOrEmpty": false
@@ -95724,7 +95733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
},
"ValidateNotNullOrEmpty": false
@@ -95740,7 +95749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -95756,7 +95765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -95772,7 +95781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
},
"ValidateNotNullOrEmpty": false
@@ -95788,7 +95797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -95804,7 +95813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -95832,7 +95841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -95957,7 +95966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -95973,7 +95982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -96020,7 +96029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -96089,7 +96098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -96109,7 +96118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -96133,7 +96142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -96149,7 +96158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -96165,7 +96174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -96181,7 +96190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -96197,7 +96206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -96213,7 +96222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -96229,7 +96238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
},
"ValidateNotNullOrEmpty": false
@@ -96245,7 +96254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
},
"ValidateNotNullOrEmpty": false
@@ -96261,7 +96270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -96277,7 +96286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
},
"ValidateNotNullOrEmpty": false
@@ -96293,7 +96302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
},
"ValidateNotNullOrEmpty": false
@@ -96309,7 +96318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
},
"ValidateNotNullOrEmpty": false
@@ -96325,7 +96334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
},
"ValidateNotNullOrEmpty": false
@@ -96341,7 +96350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
},
"ValidateNotNullOrEmpty": false
@@ -96357,7 +96366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
},
"ValidateNotNullOrEmpty": false
@@ -96373,7 +96382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -96389,7 +96398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
},
"ValidateNotNullOrEmpty": false
@@ -96405,7 +96414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
},
"ValidateNotNullOrEmpty": false
@@ -96421,7 +96430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -96437,7 +96446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -96465,7 +96474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -96590,7 +96599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -96606,7 +96615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -96660,7 +96669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -96822,7 +96831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -96986,7 +96995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -97187,7 +97196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -97316,7 +97325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -97338,7 +97347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -97365,7 +97374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -97375,7 +97384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -97530,7 +97539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -97564,7 +97573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -97597,7 +97606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -97613,7 +97622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -97730,7 +97739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -97848,7 +97857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -97875,7 +97884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -98008,7 +98017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -98041,7 +98050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -98125,7 +98134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -98291,7 +98300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -98449,7 +98458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -98607,7 +98616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]",
"MatchValues": "System.Collections.Generic.List`1[System.String]",
@@ -98659,7 +98668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable"
},
"ValidateNotNullOrEmpty": true
@@ -98756,7 +98765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable"
},
"ValidateNotNullOrEmpty": true
@@ -98895,7 +98904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
"Priority": "System.Int32",
@@ -98975,7 +98984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition"
},
"ValidateNotNullOrEmpty": true
@@ -99073,7 +99082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition"
},
"ValidateNotNullOrEmpty": true
@@ -99147,7 +99156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[System.Int32]",
"RuleGroupName": "System.String",
@@ -99308,7 +99317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]",
"MatchVariable": "System.String",
@@ -99383,7 +99392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet"
},
"ValidateNotNullOrEmpty": true
@@ -99464,7 +99473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet"
},
"ValidateNotNullOrEmpty": true
@@ -99518,7 +99527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VariableName": "System.String",
"Selector": "System.String"
@@ -99696,7 +99705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -99784,7 +99793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -99794,7 +99803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -99812,7 +99821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -99926,7 +99935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -99942,7 +99951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -99966,7 +99975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -100068,7 +100077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]",
"MatchVariable": "System.String",
@@ -100161,7 +100170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet"
},
"ValidateNotNullOrEmpty": true
@@ -100260,7 +100269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet"
},
"ValidateNotNullOrEmpty": true
@@ -100314,7 +100323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleId": "System.String"
},
@@ -100447,7 +100456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]",
"RuleGroupName": "System.String"
@@ -100505,7 +100514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule"
},
"ValidateNotNullOrEmpty": true
@@ -100559,7 +100568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule"
},
"ValidateNotNullOrEmpty": true
@@ -100613,7 +100622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]",
"RuleSetVersion": "System.String",
@@ -100684,7 +100693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup"
},
"ValidateNotNullOrEmpty": true
@@ -100756,7 +100765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup"
},
"ValidateNotNullOrEmpty": true
@@ -100810,7 +100819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -100856,7 +100865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet"
},
"ValidateNotNullOrEmpty": true
@@ -100866,7 +100875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion"
},
"ValidateNotNullOrEmpty": true
@@ -100902,7 +100911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet"
},
"ValidateNotNullOrEmpty": true
@@ -100918,7 +100927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion"
},
"ValidateNotNullOrEmpty": true
@@ -100972,7 +100981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
"RuleGroupName": "System.String"
@@ -101027,7 +101036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride"
},
"ValidateNotNullOrEmpty": true
@@ -101078,7 +101087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride"
},
"ValidateNotNullOrEmpty": true
@@ -101132,7 +101141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleId": "System.String",
"State": "System.String",
@@ -101335,7 +101344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
"RuleSetVersion": "System.String",
@@ -101400,7 +101409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride"
},
"ValidateNotNullOrEmpty": true
@@ -101466,7 +101475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride"
},
"ValidateNotNullOrEmpty": true
@@ -101520,7 +101529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -101825,7 +101834,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -101909,7 +101918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -101958,7 +101967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -101977,16 +101986,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -101997,7 +102007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -102232,7 +102242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -102278,7 +102288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -102297,16 +102307,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -102323,7 +102334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -102400,7 +102411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -102562,7 +102573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -102644,7 +102655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -102677,7 +102688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -102712,7 +102723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -102737,7 +102748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -102766,7 +102777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -102831,7 +102842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -102951,7 +102962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -103157,7 +103168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -103204,7 +103215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -103234,7 +103245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -103257,7 +103268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -103288,7 +103299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -103314,7 +103325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -103424,7 +103435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -103478,7 +103489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -103620,7 +103631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -103689,7 +103700,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -103862,7 +103873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -103961,7 +103972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104037,7 +104048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104070,7 +104081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -104096,7 +104107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -104125,7 +104136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -104374,7 +104385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104404,7 +104415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -104427,7 +104438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -104453,7 +104464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -104551,7 +104562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104639,7 +104650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -104668,7 +104679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104708,7 +104719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -104735,7 +104746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -104771,7 +104782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -105021,7 +105032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -105047,7 +105058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105084,7 +105095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -105108,7 +105119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -105141,7 +105152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -105241,7 +105252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -105301,7 +105312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -105352,7 +105363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -105406,7 +105417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Primary": "System.Nullable`1[System.Boolean]",
@@ -105469,7 +105480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105580,7 +105591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105712,7 +105723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -105872,7 +105883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -106072,7 +106083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -106130,7 +106141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -106291,7 +106302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -106384,7 +106395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -106695,7 +106706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -106960,7 +106971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107068,7 +107079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107108,7 +107119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107148,7 +107159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -107177,7 +107188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107211,7 +107222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -107238,7 +107249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -107551,7 +107562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107588,7 +107599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107625,7 +107636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -107651,7 +107662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107682,7 +107693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -107706,7 +107717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -107831,7 +107842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
"Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]",
@@ -107891,7 +107902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -107917,7 +107928,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition"
},
"ValidateNotNullOrEmpty": false
@@ -107968,7 +107979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -108006,7 +108017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition"
},
"ValidateNotNullOrEmpty": false
@@ -108060,7 +108071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -108110,7 +108121,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration"
]
@@ -108122,7 +108133,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration"
]
@@ -108134,7 +108145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -108174,7 +108185,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration"
]
@@ -108192,7 +108203,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration"
]
@@ -108210,7 +108221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -108268,7 +108279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IgnoreCase": "System.Nullable`1[System.Boolean]",
"Negate": "System.Nullable`1[System.Boolean]",
@@ -108476,7 +108487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HeaderName": "System.String",
"HeaderValue": "System.String"
@@ -108634,7 +108645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -108698,7 +108709,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -108751,7 +108762,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -108807,7 +108818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -108990,7 +109001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -109092,7 +109103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -109125,7 +109136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -109159,7 +109170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -109420,7 +109431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -109450,7 +109461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -109481,7 +109492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -109599,7 +109610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -109818,7 +109829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -110031,7 +110042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -110304,7 +110315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -110366,7 +110377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -110384,7 +110395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -110397,7 +110408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -110448,7 +110459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -110472,7 +110483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -110491,7 +110502,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -110545,7 +110556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ValidatedCertData": "System.String",
@@ -110709,7 +110720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -110871,7 +110882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -110938,7 +110949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -110957,7 +110968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -110986,7 +110997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -111017,7 +111028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -111053,7 +111064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -111121,7 +111132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -111228,7 +111239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -111275,7 +111286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -111301,7 +111312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -111338,7 +111349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -111377,7 +111388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -111424,7 +111435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -111448,7 +111459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -111496,7 +111507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -111588,7 +111599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -111642,7 +111653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -111743,7 +111754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup"
},
"ValidateNotNullOrEmpty": true
@@ -111780,7 +111791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion"
},
"ValidateNotNullOrEmpty": true
@@ -111886,7 +111897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup"
},
"ValidateNotNullOrEmpty": true
@@ -111947,7 +111958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion"
},
"ValidateNotNullOrEmpty": true
@@ -112001,7 +112012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -112269,7 +112280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -112372,7 +112383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -112391,16 +112402,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -112447,7 +112459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -112727,7 +112739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -112746,16 +112758,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -112775,7 +112788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -112959,7 +112972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -112978,16 +112991,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -113172,7 +113186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -113191,16 +113205,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -113388,7 +113403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -113956,7 +113971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -114525,7 +114540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
@@ -114589,7 +114604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile"
},
"ValidateNotNullOrEmpty": false
@@ -114643,7 +114658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile"
},
"ValidateNotNullOrEmpty": false
@@ -114697,7 +114712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
@@ -114758,7 +114773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -114848,7 +114863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -114955,7 +114970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -115039,7 +115054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -115203,7 +115218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -115451,7 +115466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -115593,14 +115608,14 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
- "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
+ "PublicIPAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
"VirtualNetworksText": "System.String",
- "PublicIpAddressesText": "System.String",
+ "PublicIPAddressesText": "System.String",
"ResourceGroupName": "System.String",
"Location": "System.String",
"ResourceGuid": "System.String",
@@ -115841,7 +115856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"ProvisioningState": "System.String",
@@ -116003,7 +116018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116163,7 +116178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -116215,7 +116230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering"
},
"ValidateNotNullOrEmpty": true
@@ -116225,7 +116240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization"
},
"ValidateNotNullOrEmpty": true
@@ -116388,7 +116403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering"
},
"ValidateNotNullOrEmpty": true
@@ -116404,7 +116419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization"
},
"ValidateNotNullOrEmpty": true
@@ -116647,7 +116662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering"
},
"ValidateNotNullOrEmpty": true
@@ -116663,7 +116678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization"
},
"ValidateNotNullOrEmpty": true
@@ -116773,7 +116788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -116931,7 +116946,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering"
},
"ValidateNotNullOrEmpty": true
@@ -116947,7 +116962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization"
},
"ValidateNotNullOrEmpty": true
@@ -117064,7 +117079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -117202,7 +117217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -117377,7 +117392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -117907,7 +117922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -118166,7 +118181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -118242,7 +118257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -118330,7 +118345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -118490,7 +118505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -118561,7 +118576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -118673,7 +118688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -118838,7 +118853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -118985,7 +119000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -119060,7 +119075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -119164,7 +119179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -119395,7 +119410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -119865,7 +119880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -120007,7 +120022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink"
},
"ValidateNotNullOrEmpty": false
@@ -120035,7 +120050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -120166,7 +120181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink"
},
"ValidateNotNullOrEmpty": false
@@ -120212,7 +120227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -120372,7 +120387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink"
},
"ValidateNotNullOrEmpty": false
@@ -120418,7 +120433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -120545,7 +120560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink"
},
"ValidateNotNullOrEmpty": false
@@ -120591,7 +120606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -120650,7 +120665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -120823,7 +120838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -121058,7 +121073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -121405,7 +121420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
@@ -121759,7 +121774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -121802,7 +121817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress"
},
"ValidateNotNullOrEmpty": true
@@ -121812,7 +121827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -121831,16 +121846,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -121851,7 +121867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -121861,7 +121877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -121871,7 +121887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -121895,7 +121911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -122013,7 +122029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
"PrivateIPAddress": "System.String"
@@ -122145,7 +122161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -122161,7 +122177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -122177,7 +122193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -122213,7 +122229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -122397,7 +122413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
"PrivateIPAddress": "System.String"
@@ -122600,7 +122616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -122616,7 +122632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -122632,7 +122648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -122668,7 +122684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -122852,7 +122868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
"PrivateIPAddress": "System.String"
@@ -122977,7 +122993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -123026,7 +123042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress"
},
"ValidateNotNullOrEmpty": true
@@ -123042,7 +123058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -123061,16 +123077,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -123135,7 +123152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -123151,7 +123168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -123167,7 +123184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection"
},
"ValidateNotNullOrEmpty": false
@@ -123203,7 +123220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -123387,7 +123404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
"PrivateIPAddress": "System.String"
@@ -123519,7 +123536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -124002,7 +124019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]",
@@ -124104,7 +124121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule"
},
"ValidateNotNullOrEmpty": true
@@ -124185,7 +124202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule"
},
"ValidateNotNullOrEmpty": true
@@ -124258,7 +124275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
"PrivateIPAddress": "System.String"
@@ -124313,7 +124330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
"Count": "System.Int32"
@@ -124367,7 +124384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
"Count": "System.Int32"
@@ -124424,7 +124441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
"Count": "System.Int32"
@@ -124479,7 +124496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress"
},
"ValidateNotNullOrEmpty": false
@@ -124530,7 +124547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress"
},
"ValidateNotNullOrEmpty": false
@@ -124584,7 +124601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -124977,7 +124994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]",
@@ -125079,7 +125096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule"
},
"ValidateNotNullOrEmpty": true
@@ -125147,7 +125164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule"
},
"ValidateNotNullOrEmpty": true
@@ -125201,7 +125218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -125577,7 +125594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
@@ -125679,7 +125696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule"
},
"ValidateNotNullOrEmpty": true
@@ -125760,7 +125777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule"
},
"ValidateNotNullOrEmpty": true
@@ -125833,7 +125850,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -125945,7 +125962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -125967,7 +125984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -125980,7 +125997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -126019,7 +126036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -126076,7 +126093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -126101,7 +126118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -126212,7 +126229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -126246,7 +126263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -126265,7 +126282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -126328,7 +126345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -126415,7 +126432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -126452,7 +126469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -126513,7 +126530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -127771,7 +127788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -127931,7 +127948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -128207,7 +128224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -128286,7 +128303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule"
},
"ValidateNotNullOrEmpty": true
@@ -128367,7 +128384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule"
},
"ValidateNotNullOrEmpty": true
@@ -128440,7 +128457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -128500,7 +128517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride"
},
"ValidateNotNullOrEmpty": false
@@ -128510,7 +128527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting"
},
"ValidateNotNullOrEmpty": false
@@ -128576,7 +128593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride"
},
"ValidateNotNullOrEmpty": false
@@ -128592,7 +128609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting"
},
"ValidateNotNullOrEmpty": false
@@ -128662,7 +128679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
"DestinationAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -128992,7 +129009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Mode": "System.String"
@@ -129160,7 +129177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -130101,7 +130118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
@@ -130203,7 +130220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule"
},
"ValidateNotNullOrEmpty": true
@@ -130284,7 +130301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule"
},
"ValidateNotNullOrEmpty": true
@@ -130357,7 +130374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -131027,7 +131044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -131106,7 +131123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -131125,7 +131142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -131227,7 +131244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -131336,7 +131353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -131383,7 +131400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -131456,7 +131473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -131510,7 +131527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
},
@@ -131643,7 +131660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -131805,7 +131822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Address": "System.String"
},
@@ -131938,7 +131955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -132103,7 +132120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
@@ -132546,7 +132563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Etag": "System.String",
@@ -132742,7 +132759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -133038,7 +133055,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -133456,7 +133473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalAddressRanges": "System.String[]",
"RemoteAddressRanges": "System.String[]"
@@ -133618,7 +133635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -133747,7 +133764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -133757,7 +133774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -133767,7 +133784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule"
},
"ValidateNotNullOrEmpty": false
@@ -133777,7 +133794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe"
},
"ValidateNotNullOrEmpty": false
@@ -133787,7 +133804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -133797,7 +133814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool"
},
"ValidateNotNullOrEmpty": false
@@ -133807,7 +133824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule"
},
"ValidateNotNullOrEmpty": false
@@ -133963,7 +133980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -133979,7 +133996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -133995,7 +134012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule"
},
"ValidateNotNullOrEmpty": false
@@ -134011,7 +134028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe"
},
"ValidateNotNullOrEmpty": false
@@ -134027,7 +134044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -134043,7 +134060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool"
},
"ValidateNotNullOrEmpty": false
@@ -134059,7 +134076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule"
},
"ValidateNotNullOrEmpty": false
@@ -134158,7 +134175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -134553,7 +134570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -134641,7 +134658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -134689,7 +134706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -134699,7 +134716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -134780,7 +134797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -134796,7 +134813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -134843,7 +134860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -134903,7 +134920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -134919,7 +134936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -134981,7 +134998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -134997,7 +135014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -135051,7 +135068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -135130,7 +135147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -135181,7 +135198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -135235,7 +135252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"Identifier": "System.Int32",
@@ -135443,7 +135460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -135586,7 +135603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -135635,7 +135652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -135654,16 +135671,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -135683,7 +135701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -135840,7 +135858,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -136136,7 +136154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -136155,16 +136173,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -136320,7 +136339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -136430,7 +136449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -136580,7 +136599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -136959,7 +136978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -137159,7 +137178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -137301,7 +137320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -137370,7 +137389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -137795,7 +137814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -137837,7 +137856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -138047,7 +138066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -138152,7 +138171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -138171,7 +138190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -138297,7 +138316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -138434,7 +138453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -138481,7 +138500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -138587,7 +138606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -138641,7 +138660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -138955,7 +138974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -139117,7 +139136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -139163,7 +139182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -139182,7 +139201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -139609,7 +139628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -139651,7 +139670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -139667,7 +139686,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -139869,7 +139888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -140659,7 +140678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -140788,7 +140807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -140798,7 +140817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -140961,7 +140980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -140977,7 +140996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -141061,7 +141080,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -141188,7 +141207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -141207,7 +141226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -141256,7 +141275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -141275,16 +141294,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -141304,7 +141324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -141343,7 +141363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -141363,7 +141383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -141383,7 +141403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -141403,7 +141423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -141777,7 +141797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -141808,7 +141828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -142077,7 +142097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -142700,7 +142720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -142746,7 +142766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -142765,16 +142785,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -142791,7 +142812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -142826,7 +142847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -142842,7 +142863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -142858,7 +142879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -142874,7 +142895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -143161,7 +143182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
@@ -143300,7 +143321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -143349,7 +143370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -143368,16 +143389,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -143398,7 +143420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -143418,7 +143440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -143438,7 +143460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -143458,7 +143480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -143787,7 +143809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -143833,7 +143855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -143852,16 +143874,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -143878,7 +143901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -143894,7 +143917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -143910,7 +143933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -143926,7 +143949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -144059,7 +144082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
@@ -144167,7 +144190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]",
"ManagementGroups": "System.Collections.Generic.List`1[System.String]",
@@ -144184,7 +144207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType"
},
"ValidateNotNullOrEmpty": false
@@ -144316,7 +144339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]",
"ManagementGroups": "System.Collections.Generic.List`1[System.String]",
@@ -144339,7 +144362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType"
},
"ValidateNotNullOrEmpty": false
@@ -144423,7 +144446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefix": "System.String",
"AddressPrefixType": "System.String"
@@ -144589,7 +144612,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -144680,7 +144703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem"
},
"ValidateNotNullOrEmpty": false
@@ -144712,7 +144735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub"
},
"ValidateNotNullOrEmpty": false
@@ -144832,7 +144855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem"
},
"ValidateNotNullOrEmpty": false
@@ -144882,7 +144905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub"
},
"ValidateNotNullOrEmpty": false
@@ -144996,7 +145019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkGroupId": "System.String",
"UseHubGateway": "System.String",
@@ -145212,7 +145235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -145504,7 +145527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String",
"ResourceType": "System.String"
@@ -145662,7 +145685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -145932,7 +145955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]",
"ManagementGroups": "System.Collections.Generic.List`1[System.String]",
@@ -146098,7 +146121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -146417,7 +146440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]",
@@ -146514,7 +146537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType"
},
"ValidateNotNullOrEmpty": false
@@ -146640,7 +146663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType"
},
"ValidateNotNullOrEmpty": false
@@ -146739,7 +146762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -146908,7 +146931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem"
},
"ValidateNotNullOrEmpty": false
@@ -146918,7 +146941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem"
},
"ValidateNotNullOrEmpty": false
@@ -147220,7 +147243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem"
},
"ValidateNotNullOrEmpty": false
@@ -147236,7 +147259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem"
},
"ValidateNotNullOrEmpty": false
@@ -147605,7 +147628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -147713,7 +147736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem"
},
"ValidateNotNullOrEmpty": false
@@ -147848,7 +147871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem"
},
"ValidateNotNullOrEmpty": false
@@ -147932,7 +147955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkGroupId": "System.String"
},
@@ -148065,7 +148088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -148359,7 +148382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -148605,7 +148628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -148705,7 +148728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -148825,7 +148848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -148909,7 +148932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -149017,7 +149040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule"
},
"ValidateNotNullOrEmpty": false
@@ -149128,7 +149151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule"
},
"ValidateNotNullOrEmpty": false
@@ -149227,7 +149250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -149363,7 +149386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -149373,7 +149396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -149665,7 +149688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -149681,7 +149704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -150138,7 +150161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150249,7 +150272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -150272,7 +150295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -150432,7 +150455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -150467,7 +150490,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -150656,7 +150679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -150691,7 +150714,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -150865,7 +150888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -150900,7 +150923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -151051,7 +151074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -151271,7 +151294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -151329,7 +151352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -151388,7 +151411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -151509,7 +151532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -151519,7 +151542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -151538,7 +151561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -151621,7 +151644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -151854,7 +151877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -151899,7 +151922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -151915,7 +151938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -152306,7 +152329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -152322,7 +152345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -152683,7 +152706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -152699,7 +152722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -152806,7 +152829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -152962,7 +152985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope",
"Name": "System.String",
@@ -153112,7 +153135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153122,7 +153145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153334,7 +153357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153350,7 +153373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153457,7 +153480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153655,7 +153678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153747,7 +153770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153763,7 +153786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153870,7 +153893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -153886,7 +153909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
},
"ValidateNotNullOrEmpty": true
@@ -154046,7 +154069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Address": "System.String"
},
@@ -154179,7 +154202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -154233,7 +154256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -154293,7 +154316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -154303,7 +154326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": true
@@ -154357,7 +154380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -154402,7 +154425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -154418,7 +154441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": true
@@ -154543,7 +154566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -154559,7 +154582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": true
@@ -154669,7 +154692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -154685,7 +154708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": true
@@ -154780,7 +154803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -154796,7 +154819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": true
@@ -154880,7 +154903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
"Type": "System.String",
@@ -155039,7 +155062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableTraceRoute": "System.Nullable`1[System.Boolean]",
"Port": "System.Nullable`1[System.Int32]",
@@ -155083,7 +155106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestHeaders": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]",
"ValidStatusCodeRanges": "System.Collections.Generic.List`1[System.String]",
@@ -155132,7 +155155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableTraceRoute": "System.Nullable`1[System.Boolean]"
},
@@ -155639,7 +155662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
"SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
@@ -155711,7 +155734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -155812,7 +155835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
},
"ValidateNotNullOrEmpty": true
},
@@ -155916,7 +155939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
"Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
@@ -155977,7 +156000,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject"
]
@@ -155989,7 +156012,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject"
]
@@ -156001,7 +156024,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject"
]
@@ -156063,7 +156086,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject"
]
@@ -156081,7 +156104,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject"
]
@@ -156099,7 +156122,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject"
]
@@ -156170,7 +156193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -156234,7 +156257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -156439,7 +156462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -156656,7 +156679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -158070,7 +158093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Direction": "System.String",
"Protocol": "System.String",
@@ -158303,7 +158326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
"StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
@@ -158370,7 +158393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -158508,7 +158531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -158553,7 +158576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -158715,7 +158738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -158945,7 +158968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -159157,7 +159180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -159354,7 +159377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -159423,7 +159446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
"StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
@@ -159490,7 +159513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -159628,7 +159651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -159650,7 +159673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -159695,7 +159718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -159860,7 +159883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -159894,7 +159917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -160124,7 +160147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -160158,7 +160181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -160373,7 +160396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -160407,7 +160430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -160607,7 +160630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -160641,7 +160664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
},
"ValidateNotNullOrEmpty": false
@@ -160710,7 +160733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -160920,7 +160943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
},
@@ -161101,7 +161124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
},
@@ -161282,7 +161305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161387,7 +161410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161436,7 +161459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -161508,7 +161531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161551,7 +161574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -161686,7 +161709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161753,7 +161776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -161845,7 +161868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -161975,7 +161998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -162042,7 +162065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -162230,7 +162253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -162297,7 +162320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -162374,7 +162397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -162420,7 +162443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -162550,7 +162573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -162617,7 +162640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -162694,7 +162717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -162836,7 +162859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -162903,7 +162926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -162995,7 +163018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -163125,7 +163148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -163192,7 +163215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -163380,7 +163403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -163447,7 +163470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -163531,7 +163554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocol": "System.String",
"RemoteIPAddress": "System.String",
@@ -163764,7 +163787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -163926,7 +163949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]",
"Name": "System.String",
@@ -164087,7 +164110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
"ProvisioningState": "System.String",
@@ -164167,7 +164190,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig"
]
@@ -164271,7 +164294,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig"
]
@@ -164357,7 +164380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -164470,7 +164493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -164510,7 +164533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection"
},
"ValidateNotNullOrEmpty": false
@@ -164565,7 +164588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -164575,7 +164598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -164668,7 +164691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -164714,7 +164737,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection"
},
"ValidateNotNullOrEmpty": false
@@ -164805,7 +164828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -164821,7 +164844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -164890,7 +164913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"GroupId": "System.String",
@@ -165100,7 +165123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -165201,7 +165224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -165211,7 +165234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -165360,7 +165383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -165376,7 +165399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -165537,7 +165560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
"GroupIds": "System.Collections.Generic.List`1[System.String]",
@@ -165600,7 +165623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -165769,7 +165792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -165989,7 +166012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -166076,7 +166099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -166095,16 +166118,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -166115,7 +166139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -166239,7 +166263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -166258,16 +166282,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -166284,7 +166309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -166383,7 +166408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -166402,16 +166427,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
},
"Methods": [
@@ -166555,7 +166581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag"
},
"ValidateNotNullOrEmpty": false
@@ -166565,7 +166591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -166609,6 +166635,15 @@
],
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "DdosProtectionPlanId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "ReverseFqdn",
"Type": {
@@ -166858,7 +166893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag"
},
"ValidateNotNullOrEmpty": false
@@ -166874,7 +166909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -166929,6 +166964,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "DdosProtectionPlanId",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "ReverseFqdn",
@@ -167079,7 +167129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -167224,7 +167274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag"
},
"ValidateNotNullOrEmpty": false
@@ -167244,7 +167294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -167462,7 +167512,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag"
},
"ValidateNotNullOrEmpty": false
@@ -167494,7 +167544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -167635,7 +167685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -167793,7 +167843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RadiusServerScore": "System.Int32",
"RadiusServerSecret": "System.String",
@@ -168007,7 +168057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -168218,7 +168268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -168314,7 +168364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule"
},
"ValidateNotNullOrEmpty": false
@@ -168425,7 +168475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule"
},
"ValidateNotNullOrEmpty": false
@@ -168524,7 +168574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -168774,7 +168824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -168874,7 +168924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -168893,16 +168943,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -169037,7 +169088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -169056,16 +169107,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -169200,7 +169252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -169315,7 +169367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute"
},
"ValidateNotNullOrEmpty": false
@@ -169447,7 +169499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute"
},
"ValidateNotNullOrEmpty": false
@@ -169531,7 +169583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -169609,7 +169661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute"
},
"ValidateNotNullOrEmpty": false
@@ -169701,7 +169753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute"
},
"ValidateNotNullOrEmpty": false
@@ -169770,7 +169822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -169846,7 +169898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -169912,7 +169964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -170010,7 +170062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -170076,7 +170128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -170141,7 +170193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -170241,7 +170293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -170322,7 +170374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -170391,7 +170443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destinations": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -170578,7 +170630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -170679,7 +170731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -170858,7 +170910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -171017,7 +171069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -171092,7 +171144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition"
},
"ValidateNotNullOrEmpty": true
@@ -171170,7 +171222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition"
},
"ValidateNotNullOrEmpty": true
@@ -171269,7 +171321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -171482,7 +171534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -171667,7 +171719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destinations": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -171902,7 +171954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -171983,7 +172035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -172050,7 +172102,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -172159,7 +172211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -172241,7 +172293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -172307,7 +172359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -172424,7 +172476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -172522,7 +172574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -172607,7 +172659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
"AddressPrefix": "System.String",
@@ -172696,7 +172748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -172818,7 +172870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -172957,7 +173009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -173081,7 +173133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -173197,7 +173249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -173386,7 +173438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -173481,7 +173533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -173532,7 +173584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -173542,7 +173594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -173712,7 +173764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -173728,7 +173780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -173881,7 +173933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -173975,7 +174027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -173991,7 +174043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -174223,7 +174275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -174239,7 +174291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -174399,7 +174451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -174495,7 +174547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -174527,7 +174579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -174645,7 +174697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -174988,7 +175040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -175017,7 +175069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -175154,7 +175206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -175308,7 +175360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -175577,7 +175629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -175741,7 +175793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -175791,7 +175843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -175827,7 +175879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -175881,7 +175933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -175959,7 +176011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176025,7 +176077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -176098,7 +176150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176250,7 +176302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176352,7 +176404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -176453,7 +176505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176525,7 +176577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176571,7 +176623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -176672,7 +176724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176744,7 +176796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176857,7 +176909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -176944,7 +176996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -177045,7 +177097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -177199,7 +177251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -177319,7 +177371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -177394,7 +177446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -177532,7 +177584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet"
},
"ValidateNotNullOrEmpty": false
@@ -177596,7 +177648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -177757,7 +177809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet"
},
"ValidateNotNullOrEmpty": false
@@ -177863,7 +177915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -177962,7 +178014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -178073,7 +178125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -178195,7 +178247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -178262,7 +178314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -178272,7 +178324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -178282,7 +178334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -178310,7 +178362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": true
@@ -178320,7 +178372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -178375,7 +178427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -178431,7 +178483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -178441,7 +178493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -178534,7 +178586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -178716,7 +178768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -178807,7 +178859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -178823,7 +178875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -178839,7 +178891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -178885,7 +178937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": true
@@ -178901,7 +178953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -178992,7 +179044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -179084,7 +179136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -179100,7 +179152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -179162,7 +179214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -179344,7 +179396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -179435,7 +179487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -179451,7 +179503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -179467,7 +179519,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -179513,7 +179565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": true
@@ -179529,7 +179581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -179620,7 +179672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -179712,7 +179764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -179728,7 +179780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -179797,7 +179849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -179921,7 +179973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -179969,7 +180021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180017,7 +180069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180104,7 +180156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -180186,7 +180238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -180196,7 +180248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -180219,7 +180271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -180229,7 +180281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -180355,7 +180407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180409,7 +180461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180463,7 +180515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180652,7 +180704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -180668,7 +180720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -180703,7 +180755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -180719,7 +180771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -180889,7 +180941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180943,7 +180995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -180997,7 +181049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -181186,7 +181238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -181202,7 +181254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -181237,7 +181289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -181253,7 +181305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -181345,7 +181397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -181451,7 +181503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -181505,7 +181557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -181559,7 +181611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -181748,7 +181800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -181764,7 +181816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -181799,7 +181851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -181815,7 +181867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -181914,7 +181966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -181994,7 +182046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -182043,7 +182095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -182062,16 +182114,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -182260,7 +182313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -182306,7 +182359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -182325,16 +182378,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -182419,7 +182473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -182949,7 +183003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsDefault": "System.Boolean",
"ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -183030,7 +183084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -183120,7 +183174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -183189,7 +183243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"AttributeType": "System.String",
@@ -183396,7 +183450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -183525,7 +183579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -183563,7 +183617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -183604,7 +183658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -183643,7 +183697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -183653,7 +183707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -183681,7 +183735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -183764,7 +183818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -183780,7 +183834,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -183826,7 +183880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -183968,7 +184022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -183984,7 +184038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -184030,7 +184084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -184077,7 +184131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -184112,7 +184166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -184147,7 +184201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -184229,7 +184283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -184245,7 +184299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -184291,7 +184345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -184345,7 +184399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -184459,7 +184513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
@@ -184505,7 +184559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -184887,7 +184941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
@@ -184930,7 +184984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -185115,7 +185169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -185422,7 +185476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -185743,7 +185797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnProfileSASUrl": "System.String"
},
@@ -186020,7 +186074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -186077,7 +186131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -186147,7 +186201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -186232,7 +186286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -186622,7 +186676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -187012,7 +187066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -187173,7 +187227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -187334,7 +187388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -187424,7 +187478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -187479,7 +187533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -187535,7 +187589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -187594,7 +187648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -187613,7 +187667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -187629,7 +187683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -187708,7 +187762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -187792,7 +187846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -187881,7 +187935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -187912,7 +187966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -187934,7 +187988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -188094,7 +188148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -188183,7 +188237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -188214,7 +188268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188236,7 +188290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -188302,7 +188356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188337,7 +188391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -188421,7 +188475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -188510,7 +188564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -188541,7 +188595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188563,7 +188617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -188629,7 +188683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188728,7 +188782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -188817,7 +188871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -188848,7 +188902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188870,7 +188924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -188951,7 +189005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -189035,7 +189089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -189124,7 +189178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -189155,7 +189209,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189177,7 +189231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -189322,7 +189376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -189411,7 +189465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -189442,7 +189496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189464,7 +189518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -189575,7 +189629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -189664,7 +189718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -189695,7 +189749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189717,7 +189771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -189786,7 +189840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189879,7 +189933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189937,7 +189991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -189965,7 +190019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -190077,7 +190131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -190123,7 +190177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -190215,7 +190269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -190310,7 +190364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -190356,7 +190410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -190512,7 +190566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -190558,7 +190612,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -190714,7 +190768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -190760,7 +190814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -190859,7 +190913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -190944,7 +190998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -191329,7 +191383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -191936,7 +191990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -192110,7 +192164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -192167,7 +192221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -192177,7 +192231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -192383,7 +192437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -192476,7 +192530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -192492,7 +192546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -192576,7 +192630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsDefault": "System.Boolean",
"P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -192669,7 +192723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -192743,7 +192797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -192871,7 +192925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -192937,7 +192991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -193016,7 +193070,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -193127,7 +193181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -193219,7 +193273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -193288,7 +193342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -193399,7 +193453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -193514,7 +193568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": true
@@ -193524,7 +193578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -193690,7 +193744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -193984,7 +194038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -194093,7 +194147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": true
@@ -194219,7 +194273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -194298,7 +194352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -194513,7 +194567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -194592,7 +194646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -194622,7 +194676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": true
@@ -194748,7 +194802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -195027,7 +195081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -195121,7 +195175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": true
@@ -195247,7 +195301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -195333,7 +195387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -195830,7 +195884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"UseLocalAzureIpAddress": "System.Boolean",
@@ -195907,7 +195961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -195954,7 +196008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -196013,7 +196067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -196023,7 +196077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -196086,7 +196140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -196157,7 +196211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -196246,7 +196300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -196262,7 +196316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -196510,7 +196564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -196628,7 +196682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -196745,7 +196799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -196865,7 +196919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -196974,7 +197028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197085,7 +197139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197220,7 +197274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -197290,7 +197344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197407,7 +197461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197527,7 +197581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197645,7 +197699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197762,7 +197816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -197885,7 +197939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -198003,7 +198057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -198120,7 +198174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -198240,7 +198294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -198293,7 +198347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -198339,7 +198393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -198403,7 +198457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -198479,7 +198533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -198536,7 +198590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -198611,7 +198665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -198666,7 +198720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -198783,7 +198837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -198937,7 +198991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -199133,7 +199187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -199414,7 +199468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -199532,7 +199586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -199649,7 +199703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -199769,7 +199823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -199887,7 +199941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200004,7 +200058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200124,7 +200178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200197,7 +200251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200314,7 +200368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200434,7 +200488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -200489,7 +200543,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200561,7 +200615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200636,7 +200690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200745,7 +200799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200847,7 +200901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -200967,7 +201021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201085,7 +201139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201202,7 +201256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201322,7 +201376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201440,7 +201494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201557,7 +201611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201677,7 +201731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201795,7 +201849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -201912,7 +201966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202032,7 +202086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202150,7 +202204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202267,7 +202321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202387,7 +202441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202505,7 +202559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202622,7 +202676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202742,7 +202796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -202814,7 +202868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -202931,7 +202985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203051,7 +203105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203169,7 +203223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203286,7 +203340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203406,7 +203460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203524,7 +203578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203641,7 +203695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203761,7 +203815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203879,7 +203933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -203996,7 +204050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204116,7 +204170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204225,7 +204279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204336,7 +204390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204471,7 +204525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204589,7 +204643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204706,7 +204760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -204826,7 +204880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -204879,7 +204933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -204925,7 +204979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -204989,7 +205043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205107,7 +205161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205224,7 +205278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205344,7 +205398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205462,7 +205516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205579,7 +205633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205699,7 +205753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205817,7 +205871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -205934,7 +205988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -206296,7 +206350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -206478,7 +206532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -206762,7 +206816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -207052,7 +207106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -207409,7 +207463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -207519,7 +207573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -207600,7 +207654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -207887,7 +207941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -207971,7 +208025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208054,7 +208108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208140,7 +208194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208224,7 +208278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208321,7 +208375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208427,7 +208481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208511,7 +208565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208608,7 +208662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -208773,7 +208827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -209031,7 +209085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -209188,7 +209242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -209253,7 +209307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -209343,7 +209397,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -209507,7 +209561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -209688,7 +209742,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -209942,7 +209996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -210059,7 +210113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -210480,7 +210534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -210582,7 +210636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -210705,7 +210759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -210772,7 +210826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -210832,7 +210886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -211183,7 +211237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -211520,7 +211574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -211678,7 +211732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -211722,7 +211776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -211939,7 +211993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -212056,7 +212110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -212359,7 +212413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -212550,7 +212604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -212860,7 +212914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -213054,7 +213108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -213536,7 +213590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -213633,7 +213687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -213672,7 +213726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -213847,7 +213901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214014,7 +214068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -214189,7 +214243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214261,7 +214315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214335,7 +214389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214433,7 +214487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214505,7 +214559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214579,7 +214633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214677,7 +214731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214749,7 +214803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214823,7 +214877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214921,7 +214975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -214993,7 +215047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215067,7 +215121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215165,7 +215219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215237,7 +215291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215311,7 +215365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215409,7 +215463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215481,7 +215535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215555,7 +215609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215653,7 +215707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215725,7 +215779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -215799,7 +215853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -216134,7 +216188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -216337,7 +216391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -216828,7 +216882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -216925,7 +216979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -217009,7 +217063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -217096,7 +217150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -217220,7 +217274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -217464,7 +217518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -220086,7 +220140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -220364,7 +220418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -220757,7 +220811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -220844,7 +220898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -220914,7 +220968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -221030,7 +221084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -221313,7 +221367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -221521,7 +221575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -221616,7 +221670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -221955,7 +222009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -222012,7 +222066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -222089,7 +222143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -222474,7 +222528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -222643,7 +222697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -222700,7 +222754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -222787,7 +222841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -223172,7 +223226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -223351,7 +223405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -223455,7 +223509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -223879,7 +223933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -224065,7 +224119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -225747,7 +225801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -226035,7 +226089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -226235,7 +226289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -226302,7 +226356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -226363,7 +226417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -226627,7 +226681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -226686,7 +226740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -226761,7 +226815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -226879,7 +226933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -227078,7 +227132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -227362,7 +227416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -227462,7 +227516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -227641,7 +227695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -228124,7 +228178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -228167,7 +228221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -228401,7 +228455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -228526,7 +228580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -228802,7 +228856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -228852,7 +228906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -228904,7 +228958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -229014,7 +229068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -229209,7 +229263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -229529,7 +229583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -229765,7 +229819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -229925,7 +229979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -230009,7 +230063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -230027,7 +230081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -230093,7 +230147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -230170,7 +230224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -230232,7 +230286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -230256,7 +230310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -230318,7 +230372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -230440,7 +230494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -230484,7 +230538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -230726,7 +230780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -230852,7 +230906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -231186,7 +231240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
"AddressPrefix": "System.String",
@@ -231471,7 +231525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
"AddressPrefix": "System.String",
@@ -231703,7 +231757,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -232003,7 +232057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -232260,7 +232314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -232303,7 +232357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -232538,7 +232592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -232663,7 +232717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -232993,7 +233047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -233036,7 +233090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -233271,7 +233325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -233396,7 +233450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -233723,7 +233777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -233939,7 +233993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -234802,7 +234856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -234883,7 +234937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -234957,7 +235011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -235049,7 +235103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -235130,7 +235184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -235213,7 +235267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -235383,7 +235437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -235645,7 +235699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -236023,7 +236077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -236108,7 +236162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -236192,7 +236246,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -236319,7 +236373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -236596,7 +236650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -236822,7 +236876,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -237020,7 +237074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -237303,7 +237357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -237402,7 +237456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -237581,7 +237635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -237847,7 +237901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -238025,7 +238079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -238294,7 +238348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -238438,7 +238492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -239028,7 +239082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -239299,7 +239353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -239503,7 +239557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -239686,7 +239740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -239992,7 +240046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -240258,7 +240312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -240457,7 +240511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -240654,7 +240708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -240976,7 +241030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -241261,7 +241315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -241477,7 +241531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -241660,7 +241714,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -241903,7 +241957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -242014,7 +242068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -242237,7 +242291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -242382,7 +242436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -242473,7 +242527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -242633,7 +242687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -242831,7 +242885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -242912,7 +242966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -243004,7 +243058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -243161,7 +243215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -243337,7 +243391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -243734,7 +243788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -243822,7 +243876,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -243979,7 +244033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -244236,7 +244290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"UseLocalAzureIpAddress": "System.Boolean",
@@ -244431,7 +244485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"UseLocalAzureIpAddress": "System.Boolean",
@@ -244629,7 +244683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -244710,7 +244764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -244808,7 +244862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -244930,7 +244984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245039,7 +245093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245150,7 +245204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245285,7 +245339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245394,7 +245448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245514,7 +245568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245664,7 +245718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245773,7 +245827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -245896,7 +245950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246049,7 +246103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246158,7 +246212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246289,7 +246343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246456,7 +246510,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246565,7 +246619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246694,7 +246748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -246716,7 +246770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -246743,7 +246797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -246753,7 +246807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -246825,7 +246879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -246990,7 +247044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -247024,7 +247078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -247057,7 +247111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -247073,7 +247127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -247190,7 +247244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -247299,7 +247353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -247424,7 +247478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -247451,7 +247505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -247505,7 +247559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -247666,7 +247720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -247699,7 +247753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -247783,7 +247837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -247836,7 +247890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -247904,7 +247958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -248002,7 +248056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -248078,7 +248132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -248153,7 +248207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -248258,7 +248312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -248304,7 +248358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -248424,7 +248478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -248574,7 +248628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -248650,7 +248704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -248684,7 +248738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -248694,7 +248748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -248712,7 +248766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -248790,7 +248844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -248806,7 +248860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -248830,7 +248884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -248895,7 +248949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -248926,7 +248980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -248942,7 +248996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -248966,7 +249020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -249046,7 +249100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -249062,7 +249116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -249086,7 +249140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -249151,7 +249205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
},
"ValidateNotNullOrEmpty": false
@@ -249167,7 +249221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -249191,7 +249245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -249263,7 +249317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -249372,7 +249426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -249475,7 +249529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -249524,7 +249578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -249543,16 +249597,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -249563,7 +249618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -249616,7 +249671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -249819,7 +249874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -249962,7 +250017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -250008,7 +250063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -250027,16 +250082,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -250053,7 +250109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -250077,7 +250133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -250212,7 +250268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -250321,7 +250377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -250441,7 +250497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -250591,7 +250647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -250700,7 +250756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -250794,7 +250850,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -250827,7 +250883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -250862,7 +250918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -250887,7 +250943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -250916,7 +250972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -250981,7 +251037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -251017,7 +251073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -251183,7 +251239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -251305,7 +251361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -251471,7 +251527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -251518,7 +251574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -251548,7 +251604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -251571,7 +251627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -251602,7 +251658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -251628,7 +251684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -251654,7 +251710,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -251820,7 +251876,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
},
"ValidateNotNullOrEmpty": true
@@ -251874,7 +251930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -251920,7 +251976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -251995,7 +252051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -252100,7 +252156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -252209,7 +252265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -252323,7 +252379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -252461,7 +252517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -252570,7 +252626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -252664,7 +252720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -252730,7 +252786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -252873,7 +252929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -253001,7 +253057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -253047,7 +253103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -253182,7 +253238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -253291,7 +253347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -253385,7 +253441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -253418,7 +253474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -253444,7 +253500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -253473,7 +253529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -253532,7 +253588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -253739,7 +253795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -253886,7 +253942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -253916,7 +253972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -253939,7 +253995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -253965,7 +254021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -253991,7 +254047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -254145,7 +254201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -254254,7 +254310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -254339,7 +254395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -254375,7 +254431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -254472,7 +254528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
},
"ValidateNotNullOrEmpty": true
@@ -254526,7 +254582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -254635,7 +254691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -254811,7 +254867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -254851,7 +254907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -255093,7 +255149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -255151,7 +255207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -255260,7 +255316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -255369,7 +255425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -255459,7 +255515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -255659,7 +255715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -255844,7 +255900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -255881,7 +255937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -256081,7 +256137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -256273,7 +256329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -256382,7 +256438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -256503,7 +256559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -256543,7 +256599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -256583,7 +256639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -256612,7 +256668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -256646,7 +256702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -256673,7 +256729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -256726,7 +256782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -256983,7 +257039,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -257150,7 +257206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -257187,7 +257243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -257224,7 +257280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -257250,7 +257306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -257281,7 +257337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -257305,7 +257361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -257338,7 +257394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -257512,7 +257568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -257621,7 +257677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -257706,7 +257762,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -257744,7 +257800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -257841,7 +257897,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -257897,7 +257953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -258006,7 +258062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -258127,7 +258183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -258160,7 +258216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -258194,7 +258250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -258240,7 +258296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -258452,7 +258508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -258619,7 +258675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -258649,7 +258705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -258680,7 +258736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -258706,7 +258762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -258880,7 +258936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -258989,7 +259045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -259136,7 +259192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -259319,7 +259375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -259428,7 +259484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -259566,7 +259622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -259746,7 +259802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -259855,7 +259911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -260021,7 +260077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -260235,7 +260291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -260344,7 +260400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -260429,7 +260485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -260447,7 +260503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -260460,7 +260516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -260496,7 +260552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -260593,7 +260649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -260617,7 +260673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -260636,7 +260692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
},
"ValidateNotNullOrEmpty": true
@@ -260690,7 +260746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -260743,7 +260799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -260853,7 +260909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -261011,7 +261067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261120,7 +261176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261240,7 +261296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261390,7 +261446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261499,7 +261555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261619,7 +261675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261769,7 +261825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261878,7 +261934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -261963,7 +262019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -261982,7 +262038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -262011,7 +262067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -262042,7 +262098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -262078,7 +262134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -262131,7 +262187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -262228,7 +262284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -262320,7 +262376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -262417,7 +262473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -262464,7 +262520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -262490,7 +262546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -262527,7 +262583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -262551,7 +262607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -262648,7 +262704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -262695,7 +262751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -262719,7 +262775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -262752,7 +262808,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -262849,7 +262905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -262926,7 +262982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -263023,7 +263079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
},
"ValidateNotNullOrEmpty": true
@@ -263077,7 +263133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -263186,7 +263242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -263308,7 +263364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup"
},
"ValidateNotNullOrEmpty": true
@@ -263345,7 +263401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion"
},
"ValidateNotNullOrEmpty": true
@@ -263381,7 +263437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -263533,7 +263589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup"
},
"ValidateNotNullOrEmpty": true
@@ -263594,7 +263650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion"
},
"ValidateNotNullOrEmpty": true
@@ -263648,7 +263704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -263726,7 +263782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -263831,7 +263887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -263984,7 +264040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264059,7 +264115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264136,7 +264192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264237,7 +264293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264321,7 +264377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264444,7 +264500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264602,7 +264658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264737,7 +264793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264821,7 +264877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -264959,7 +265015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -265047,7 +265103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -265331,7 +265387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -265585,7 +265641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -265631,7 +265687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -265892,7 +265948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -265993,7 +266049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -266045,7 +266101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -266193,7 +266249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -266327,7 +266383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -266398,7 +266454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -266474,7 +266530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -266590,7 +266646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -266665,7 +266721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -266730,7 +266786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -266798,7 +266854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering"
},
"ValidateNotNullOrEmpty": false
@@ -266852,7 +266908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -267011,7 +267067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering"
},
"ValidateNotNullOrEmpty": false
@@ -267156,7 +267212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -267242,7 +267298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -267477,7 +267533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -267817,7 +267873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -267887,7 +267943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -267959,7 +268015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -268052,7 +268108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -268119,7 +268175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -268191,7 +268247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -268287,7 +268343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
@@ -268593,7 +268649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
@@ -268677,7 +268733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
@@ -268785,7 +268841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -268874,7 +268930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -268941,7 +268997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -268963,7 +269019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -268976,7 +269032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -269006,7 +269062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -269063,7 +269119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -269088,7 +269144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -269214,7 +269270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -269248,7 +269304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -269267,7 +269323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -269300,7 +269356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -269387,7 +269443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -269424,7 +269480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -269496,7 +269552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -269587,7 +269643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -269621,7 +269677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -269640,7 +269696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -269673,7 +269729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -269760,7 +269816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -269797,7 +269853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -269886,7 +269942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -269920,7 +269976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -269939,7 +269995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -269972,7 +270028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -270059,7 +270115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -270096,7 +270152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -270215,7 +270271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -270249,7 +270305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -270268,7 +270324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
}
@@ -270301,7 +270357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -270388,7 +270444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -270425,7 +270481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -270486,7 +270542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -270557,7 +270613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -270570,7 +270626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -270643,7 +270699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -270744,7 +270800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -270809,7 +270865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
"ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
@@ -270867,7 +270923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -270914,7 +270970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -270950,7 +271006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -271029,7 +271085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -271093,7 +271149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
},
"ValidateNotNullOrEmpty": true
@@ -271147,7 +271203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
@@ -271243,7 +271299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
@@ -271529,7 +271585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
@@ -271724,7 +271780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -271780,7 +271836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -271838,7 +271894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -271920,7 +271976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -271992,7 +272048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -272066,7 +272122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -272164,7 +272220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -272261,7 +272317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -272300,7 +272356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -272325,7 +272381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -272344,7 +272400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -272443,7 +272499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -272459,7 +272515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -272551,7 +272607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -272596,7 +272652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -272612,7 +272668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -272689,7 +272745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -272720,7 +272776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -272797,7 +272853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
},
"ValidateNotNullOrEmpty": true
@@ -272828,7 +272884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -272905,7 +272961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
},
"ValidateNotNullOrEmpty": false
@@ -272989,7 +273045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -273061,7 +273117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -273150,7 +273206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -273199,7 +273255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -273218,16 +273274,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -273247,7 +273304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -273317,7 +273374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -273473,7 +273530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -273519,7 +273576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -273690,7 +273747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -273827,7 +273884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -273949,7 +274006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -273968,16 +274025,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -273994,7 +274052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -274131,7 +274189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -274253,7 +274311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -274294,7 +274352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -274423,7 +274481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -274495,7 +274553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -274615,7 +274673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -274677,7 +274735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -274888,7 +274946,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -275084,7 +275142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -275126,7 +275184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -275329,7 +275387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -275401,7 +275459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -275512,7 +275570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -275581,7 +275639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -275632,7 +275690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -275879,7 +275937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -276096,7 +276154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -276138,7 +276196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -276169,7 +276227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -276393,7 +276451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -276465,7 +276523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -276549,7 +276607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -276568,7 +276626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -276619,7 +276677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -276739,7 +276797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -276801,7 +276859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -276921,7 +276979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -276968,7 +277026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -276999,7 +277057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -277119,7 +277177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -277173,7 +277231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -277245,7 +277303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -277376,7 +277434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -277567,7 +277625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -277639,7 +277697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -277768,7 +277826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -277814,7 +277872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -277833,7 +277891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -277882,7 +277940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -278139,7 +278197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -278350,7 +278408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -278392,7 +278450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -278408,7 +278466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -278437,7 +278495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
@@ -278655,7 +278713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -278715,7 +278773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -278814,7 +278872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -278961,7 +279019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -279056,7 +279114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -279085,7 +279143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279095,7 +279153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279179,7 +279237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279195,7 +279253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279290,7 +279348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279306,7 +279364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279386,7 +279444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -279421,7 +279479,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279437,7 +279495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279514,7 +279572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279530,7 +279588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -279614,7 +279672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -279702,7 +279760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -279780,7 +279838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -279882,7 +279940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -279979,7 +280037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -280062,7 +280120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -280111,7 +280169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -280130,16 +280188,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -280160,7 +280219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -280180,7 +280239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -280200,7 +280259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -280220,7 +280279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -280280,7 +280339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -280518,7 +280577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -280647,7 +280706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -280693,7 +280752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -280712,16 +280771,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -280738,7 +280798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -280754,7 +280814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -280770,7 +280830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
},
"ValidateNotNullOrEmpty": false
@@ -280786,7 +280846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -280832,7 +280892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -280968,7 +281028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -281056,7 +281116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -281118,7 +281178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -281210,7 +281270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
@@ -281270,7 +281330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
@@ -281332,7 +281392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
@@ -281418,7 +281478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -281479,7 +281539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -281542,7 +281602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -281629,7 +281689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -281683,7 +281743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -281739,7 +281799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -281819,7 +281879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -281875,7 +281935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -281933,7 +281993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -282015,7 +282075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -282072,7 +282132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -282131,7 +282191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -282214,7 +282274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]",
@@ -282272,7 +282332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]",
@@ -282332,7 +282392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]",
@@ -282416,7 +282476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -282472,7 +282532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -282530,7 +282590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"NetworkManagerName": "System.String",
@@ -282612,7 +282672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -282669,7 +282729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -282728,7 +282788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -282811,7 +282871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -282867,7 +282927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -282925,7 +282985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
"ScopeId": "System.String",
@@ -283007,7 +283067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -283065,7 +283125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -283125,7 +283185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -283209,7 +283269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -283287,7 +283347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -283351,7 +283411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -283439,7 +283499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -283526,7 +283586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -283621,7 +283681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -283631,7 +283691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -283737,7 +283797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -283958,7 +284018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -283974,7 +284034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
},
"ValidateNotNullOrEmpty": false
@@ -284005,7 +284065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -284273,7 +284333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -284501,7 +284561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -284554,7 +284614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -284774,7 +284834,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -285014,7 +285074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -285279,7 +285339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -286991,7 +287051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -287049,7 +287109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -287108,7 +287168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -287165,7 +287225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -287259,7 +287319,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -287269,7 +287329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -287341,7 +287401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -287559,7 +287619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -287604,7 +287664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -287620,7 +287680,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -287981,7 +288041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -287997,7 +288057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -288328,7 +288388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -288344,7 +288404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -288639,7 +288699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
},
"ValidateNotNullOrEmpty": true
@@ -288655,7 +288715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
},
"ValidateNotNullOrEmpty": false
@@ -288747,7 +288807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -288873,7 +288933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -288937,7 +288997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -288994,7 +289054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -289185,7 +289245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -289405,7 +289465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -291067,7 +291127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -291203,7 +291263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
"ProvisioningState": "System.String",
@@ -291283,7 +291343,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig"
]
@@ -291378,7 +291438,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig"
]
@@ -291449,7 +291509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -291532,7 +291592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -291605,7 +291665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -291702,7 +291762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -292116,7 +292176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -292187,7 +292247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -292260,7 +292320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -292357,7 +292417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -292376,16 +292436,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
},
"Methods": [
@@ -292429,7 +292490,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -292448,16 +292509,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -292503,7 +292565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -292522,16 +292584,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
}
},
@@ -292601,7 +292664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -292669,7 +292732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -292739,7 +292802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
@@ -292833,7 +292896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -292900,7 +292963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -292988,7 +293051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -293118,7 +293181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -293184,7 +293247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -293253,7 +293316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -293352,7 +293415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -293418,7 +293481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -293522,7 +293585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -293674,7 +293737,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -293741,7 +293804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -293802,7 +293865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -293887,7 +293950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -293977,7 +294040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -294020,7 +294083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -294049,7 +294112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -294148,7 +294211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -294234,7 +294297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -294280,7 +294343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -294345,7 +294408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -294368,7 +294431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -294448,7 +294511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -294510,7 +294573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -294579,7 +294642,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -294629,7 +294692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -294700,7 +294763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
"ProvisioningState": "System.String",
@@ -294807,7 +294870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -294864,7 +294927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -294923,7 +294986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource",
"Tag": "System.Collections.Hashtable",
@@ -295006,7 +295069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -295072,7 +295135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -295123,7 +295186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -295192,7 +295255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -295267,7 +295330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -295361,7 +295424,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -295476,7 +295539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -295587,7 +295650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -295627,7 +295690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable"
},
"ValidateNotNullOrEmpty": false
@@ -295716,7 +295779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable"
},
"ValidateNotNullOrEmpty": false
@@ -295811,7 +295874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable"
},
"ValidateNotNullOrEmpty": false
@@ -295891,7 +295954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -295937,7 +296000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable"
},
"ValidateNotNullOrEmpty": false
@@ -296014,7 +296077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable"
},
"ValidateNotNullOrEmpty": false
@@ -296098,7 +296161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -296174,7 +296237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -296252,7 +296315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -296354,7 +296417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -296435,7 +296498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -296511,7 +296574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -296578,7 +296641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -296588,7 +296651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -296598,7 +296661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -296626,7 +296689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": true
@@ -296684,7 +296747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -296740,7 +296803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -296762,7 +296825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -296772,7 +296835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -296826,7 +296889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -296914,7 +296977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -297005,7 +297068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -297021,7 +297084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -297037,7 +297100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -297083,7 +297146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": true
@@ -297177,7 +297240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -297269,7 +297332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -297303,7 +297366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -297319,7 +297382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -297396,7 +297459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -297484,7 +297547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -297575,7 +297638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -297591,7 +297654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
},
"ValidateNotNullOrEmpty": false
@@ -297607,7 +297670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -297653,7 +297716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": true
@@ -297747,7 +297810,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -297839,7 +297902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -297873,7 +297936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -297889,7 +297952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -297958,7 +298021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -298043,7 +298106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -298152,7 +298215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -298162,7 +298225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -298172,7 +298235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -298182,7 +298245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -298245,7 +298308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -298390,7 +298453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -298406,7 +298469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -298422,7 +298485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -298438,7 +298501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -298530,7 +298593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -298675,7 +298738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -298691,7 +298754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -298707,7 +298770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -298723,7 +298786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId"
},
"ValidateNotNullOrEmpty": false
@@ -298986,7 +299049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -299067,7 +299130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -299115,7 +299178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -299168,7 +299231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -299253,7 +299316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -299286,7 +299349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -299378,7 +299441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -299446,7 +299509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -299516,7 +299579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -299610,7 +299673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -299695,7 +299758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -299757,7 +299820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -299795,7 +299858,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -299836,7 +299899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -299875,7 +299938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -299885,7 +299948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -299913,7 +299976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -299964,7 +300027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -300045,7 +300108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -300061,7 +300124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -300107,7 +300170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -300217,7 +300280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -300298,7 +300361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -300314,7 +300377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -300360,7 +300423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -300407,7 +300470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -300442,7 +300505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -300477,7 +300540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -300527,7 +300590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -300608,7 +300671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -300624,7 +300687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation"
},
"ValidateNotNullOrEmpty": false
@@ -300670,7 +300733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation"
},
"ValidateNotNullOrEmpty": false
@@ -300724,7 +300787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -300784,7 +300847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -300846,7 +300909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -300932,7 +300995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -301002,7 +301065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -301021,7 +301084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -301134,7 +301197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -301190,7 +301253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -301274,7 +301337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -301375,7 +301438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -301438,7 +301501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -301547,7 +301610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -301649,7 +301712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -301782,7 +301845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -301839,7 +301902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -301916,7 +301979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -302301,7 +302364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -302457,7 +302520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
"Tag": "System.Collections.Hashtable",
@@ -302519,7 +302582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -302623,7 +302686,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -303009,7 +303072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -303092,7 +303155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -303296,7 +303359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -303559,7 +303622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -303642,7 +303705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -303842,7 +303905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -304101,7 +304164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex",
"Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -304198,7 +304261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -304424,7 +304487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -304711,7 +304774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex",
"Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -304794,7 +304857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -304975,7 +305038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -305215,7 +305278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -305324,7 +305387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -305435,7 +305498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -305583,7 +305646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -305640,7 +305703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -305717,7 +305780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -306102,7 +306165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -306271,7 +306334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -306375,7 +306438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -306761,7 +306824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -306843,7 +306906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -307046,7 +307109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -307309,7 +307372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -307392,7 +307455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307592,7 +307655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307851,7 +307914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex",
"Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -307947,7 +308010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -308172,7 +308235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -308459,7 +308522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex",
"Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -308542,7 +308605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -308723,7 +308786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -308963,7 +309026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -309058,7 +309121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -309195,7 +309258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -309436,7 +309499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Hops": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
"AvgLatencyInMs": "System.Nullable`1[System.Int32]",
@@ -309488,7 +309551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -309588,7 +309651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -309638,7 +309701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -309744,7 +309807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -309923,7 +309986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -310084,7 +310147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -310230,7 +310293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -310304,7 +310367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Access": "System.String",
"RuleName": "System.String"
@@ -310350,7 +310413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -310516,7 +310579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -311294,7 +311357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Available": "System.Boolean",
"AvailableIPAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -311341,7 +311404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -311437,7 +311500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -311810,7 +311873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -311898,7 +311961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -312229,7 +312292,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -312741,7 +312804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -312825,7 +312888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -312934,7 +312997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -313052,7 +313115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -313143,7 +313206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -313194,7 +313257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -313204,7 +313267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -313275,7 +313338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -313404,7 +313467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -313451,7 +313514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -313599,7 +313662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -313664,7 +313727,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -313711,7 +313774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -313890,7 +313953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -313937,7 +314000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314053,7 +314116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314107,7 +314170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -314154,7 +314217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314270,7 +314333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314308,7 +314371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -314373,7 +314436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -314420,7 +314483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314536,7 +314599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314605,7 +314668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -314652,7 +314715,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314796,7 +314859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -314843,7 +314906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -314971,7 +315034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -315036,7 +315099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -315083,7 +315146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -315242,7 +315305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -315289,7 +315352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -315418,7 +315481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
},
"ValidateNotNullOrEmpty": false
@@ -315465,7 +315528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -315585,7 +315648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -315972,7 +316035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
@@ -316090,7 +316153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -316390,7 +316453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -316617,7 +316680,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -316712,7 +316775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -316756,7 +316819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -316791,7 +316854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -316900,7 +316963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -317002,7 +317065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -317048,7 +317111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -317130,7 +317193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
"Labels": "System.Collections.Generic.List`1[System.String]",
@@ -317158,7 +317221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -317255,7 +317318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -317333,7 +317396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
},
"ValidateNotNullOrEmpty": false
@@ -317418,7 +317481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
"AddressPrefix": "System.String",
@@ -317507,7 +317570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -317635,7 +317698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -317759,7 +317822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
}
@@ -317860,7 +317923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -317970,7 +318033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -318019,7 +318082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -318029,7 +318092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -318184,7 +318247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -318200,7 +318263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -318386,7 +318449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -318402,7 +318465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -318558,7 +318621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -318619,7 +318682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -318635,7 +318698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -318803,7 +318866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -318819,7 +318882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -318979,7 +319042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -319083,7 +319146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -319115,7 +319178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -319158,7 +319221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -319306,7 +319369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -319570,7 +319633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -319599,7 +319662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -319759,7 +319822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -319881,7 +319944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -320109,7 +320172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -320137,7 +320200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -320255,7 +320318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -320355,7 +320418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -320398,7 +320461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -320521,7 +320584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -320611,7 +320674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -320654,7 +320717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320776,7 +320839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320847,7 +320910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -320890,7 +320953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320994,7 +321057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -321080,7 +321143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -321155,7 +321218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -321260,7 +321323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -321690,7 +321753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -321975,7 +322038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -322287,7 +322350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowBranchToBranchTraffic": "System.Boolean",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -322404,7 +322467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -322704,7 +322767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -322931,7 +322994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -323013,7 +323076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -323299,7 +323362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -323735,7 +323798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -323849,7 +323912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -323898,7 +323961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -323953,7 +324016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -323975,7 +324038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -324000,7 +324063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -324128,7 +324191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -324207,7 +324270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -324241,7 +324304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -324278,7 +324341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -324388,7 +324451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -324467,7 +324530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -324501,7 +324564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -324538,7 +324601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -324603,7 +324666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -324670,7 +324733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -324749,7 +324812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -324783,7 +324846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -324820,7 +324883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -324912,7 +324975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -324991,7 +325054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
},
"ValidateNotNullOrEmpty": false
@@ -325025,7 +325088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -325062,7 +325125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -325131,7 +325194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -325219,7 +325282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -325257,7 +325320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -325267,7 +325330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -325286,7 +325349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": false
@@ -325396,7 +325459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -325412,7 +325475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -325443,7 +325506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": false
@@ -325556,7 +325619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -325591,7 +325654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -325607,7 +325670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -325638,7 +325701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": false
@@ -325763,7 +325826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -325779,7 +325842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -325810,7 +325873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": false
@@ -325920,7 +325983,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
},
"ValidateNotNullOrEmpty": false
@@ -325936,7 +325999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
},
"ValidateNotNullOrEmpty": false
@@ -325967,7 +326030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
},
"ValidateNotNullOrEmpty": false
@@ -326084,7 +326147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -326193,7 +326256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -326729,7 +326792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -327094,7 +327157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -327195,7 +327258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -327317,7 +327380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -327374,7 +327437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -327384,7 +327447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -327534,7 +327597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -327668,7 +327731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -327684,7 +327747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -327764,7 +327827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -327875,7 +327938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -328009,7 +328072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -328025,7 +328088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -328182,7 +328245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
},
"ValidateNotNullOrEmpty": false
@@ -328316,7 +328379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -328332,7 +328395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -328450,7 +328513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
},
"ValidateNotNullOrEmpty": false
@@ -328466,7 +328529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
},
"ValidateNotNullOrEmpty": false
@@ -328550,7 +328613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsDefault": "System.Boolean",
"P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -328643,7 +328706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -328720,7 +328783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -328851,7 +328914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -328917,7 +328980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -328999,7 +329062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -329113,7 +329176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -329208,7 +329271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
},
"ValidateNotNullOrEmpty": false
@@ -329277,7 +329340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -329364,7 +329427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -329423,7 +329486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -329529,7 +329592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -329539,7 +329602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -329780,7 +329843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -329796,7 +329859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -330045,7 +330108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -330061,7 +330124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -330174,7 +330237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -330325,7 +330388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -330341,7 +330404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -330575,7 +330638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -330591,7 +330654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -330673,7 +330736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -330859,7 +330922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -330875,7 +330938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -330957,7 +331020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -331128,7 +331191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -331144,7 +331207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -331226,7 +331289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -331261,7 +331324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -331412,7 +331475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -331428,7 +331491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -331510,7 +331573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -331666,7 +331729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -331682,7 +331745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -331930,7 +331993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -331946,7 +332009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -332179,7 +332242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -332195,7 +332258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -332292,7 +332355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -332443,7 +332506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -332459,7 +332522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -332677,7 +332740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -332693,7 +332756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -332893,7 +332956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
},
"ValidateNotNullOrEmpty": false
@@ -332909,7 +332972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
}
@@ -333028,7 +333091,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -333079,7 +333142,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -333118,7 +333181,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -333169,7 +333232,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -333216,7 +333279,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup"
]
@@ -333224,7 +333287,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[System.Int32]",
"RuleGroupName": "System.String",
@@ -333271,7 +333334,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion"
]
@@ -333279,7 +333342,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]",
"MatchVariable": "System.String",
@@ -333319,7 +333382,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet"
]
@@ -333327,7 +333390,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]",
"RuleSetVersion": "System.String",
@@ -333366,7 +333429,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup"
]
@@ -333374,7 +333437,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]",
"RuleGroupName": "System.String"
@@ -333412,7 +333475,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule"
]
@@ -333420,7 +333483,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleId": "System.String"
},
@@ -333465,7 +333528,7 @@
"Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -333505,7 +333568,7 @@
"System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"System.String",
"Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue"
@@ -333514,7 +333577,7 @@
"Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -333652,7 +333715,7 @@
"Microsoft.Azure.Commands.Network.Models.PSResourceId": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -333689,7 +333752,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate"
]
@@ -333697,7 +333760,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -333739,7 +333802,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool"
]
@@ -333747,7 +333810,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -333800,7 +333863,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress"
]
@@ -333808,7 +333871,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Fqdn": "System.String",
"IpAddress": "System.String"
@@ -333846,7 +333909,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration"
]
@@ -333854,7 +333917,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
@@ -333936,7 +333999,7 @@
"Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -334021,7 +334084,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
@@ -334040,16 +334103,17 @@
"Location": "System.String",
"ResourceGroupName": "System.String",
"ExtendedLocationText": "System.String",
- "IpConfigurationText": "System.String",
- "SkuText": "System.String",
+ "PublicIpPrefixText": "System.String",
+ "DdosSettingsText": "System.String",
"IpTagsText": "System.String",
"DnsSettingsText": "System.String",
"Etag": "System.String",
+ "IpConfigurationText": "System.String",
"ProvisioningState": "System.String",
"PublicIpAddressVersion": "System.String",
"IpAddress": "System.String",
"PublicIpAllocationMethod": "System.String",
- "PublicIpPrefixText": "System.String",
+ "SkuText": "System.String",
"Id": "System.String"
},
"Methods": [
@@ -334085,7 +334149,11 @@
"Microsoft.Azure.Commands.Network.Models.PSDdosSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "ProtectionMode": "System.String"
+ },
"Methods": [
{
"Name": "GetType",
@@ -334119,7 +334187,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExtendedLocation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "System.String",
"Name": "System.String",
@@ -334168,7 +334236,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -334214,7 +334282,7 @@
"Microsoft.Azure.Commands.Network.Models.PSSubnet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -334307,7 +334375,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -334377,7 +334445,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterface"
]
@@ -334385,7 +334453,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterface": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
@@ -334465,7 +334533,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsServers": "System.Collections.Generic.List`1[System.String]",
"AppliedDnsServers": "System.Collections.Generic.List`1[System.String]",
@@ -334508,7 +334576,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration"
]
@@ -334516,7 +334584,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -334559,7 +334627,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -334616,7 +334684,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSSecurityRule"
]
@@ -334624,7 +334692,7 @@
"Microsoft.Azure.Commands.Network.Models.PSSecurityRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -334685,7 +334753,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup"
]
@@ -334693,7 +334761,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -334739,7 +334807,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSSubnet"
]
@@ -334747,7 +334815,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteTable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -334806,7 +334874,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSRoute"
]
@@ -334814,7 +334882,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -334857,7 +334925,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSDelegation"
]
@@ -334865,7 +334933,7 @@
"Microsoft.Azure.Commands.Network.Models.PSDelegation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"ProvisioningState": "System.String",
@@ -334907,7 +334975,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSIPConfiguration"
]
@@ -334915,7 +334983,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint"
]
@@ -334923,7 +334991,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -334998,7 +335066,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig"
]
@@ -335006,7 +335074,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
"Fqdn": "System.String"
@@ -335044,7 +335112,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration"
]
@@ -335052,7 +335120,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"GroupId": "System.String",
@@ -335094,7 +335162,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection"
]
@@ -335102,7 +335170,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
"GroupIds": "System.Collections.Generic.List`1[System.String]",
@@ -335148,7 +335216,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "System.String",
"Description": "System.String",
@@ -335187,7 +335255,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSResourceId"
]
@@ -335195,7 +335263,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink"
]
@@ -335203,7 +335271,7 @@
"Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkedResourceType": "System.String",
"Link": "System.String",
@@ -335245,7 +335313,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink"
]
@@ -335253,7 +335321,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkedResourceType": "System.String",
"Link": "System.String",
@@ -335295,7 +335363,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint"
]
@@ -335303,7 +335371,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locations": "System.Collections.Generic.List`1[System.String]",
"Service": "System.String",
@@ -335342,7 +335410,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy"
]
@@ -335350,7 +335418,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -335408,7 +335476,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition"
]
@@ -335416,7 +335484,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -335459,7 +335527,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DomainNameLabel": "System.String",
"Fqdn": "System.String",
@@ -335498,7 +335566,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -335536,7 +335604,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPublicIpTag"
]
@@ -335544,7 +335612,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpTag": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -335582,7 +335650,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Fqdns": "System.Collections.Generic.List`1[System.String]",
"RequiredMemberName": "System.String",
@@ -335621,7 +335689,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool"
]
@@ -335629,7 +335697,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
@@ -335691,7 +335759,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress"
]
@@ -335699,7 +335767,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335749,7 +335817,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping"
]
@@ -335757,7 +335825,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendPort": "System.Nullable`1[System.Int32]",
"BackendPort": "System.Nullable`1[System.Int32]",
@@ -335796,7 +335864,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTunnelInterface"
]
@@ -335804,7 +335872,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTunnelInterface": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"Identifier": "System.Int32",
@@ -335844,7 +335912,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSInboundNatRule"
]
@@ -335852,7 +335920,7 @@
"Microsoft.Azure.Commands.Network.Models.PSInboundNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335914,7 +335982,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap"
]
@@ -335922,7 +335990,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings"
]
@@ -335930,7 +335998,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335998,7 +336066,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -336036,7 +336104,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings"
]
@@ -336044,7 +336112,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -336105,7 +336173,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError"
]
@@ -336113,7 +336181,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -336151,7 +336219,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration"
]
@@ -336159,7 +336227,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -336208,7 +336276,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort"
]
@@ -336216,7 +336284,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -336258,7 +336326,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener"
]
@@ -336266,7 +336334,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -336322,7 +336390,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration"
]
@@ -336330,7 +336398,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -336373,7 +336441,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener"
]
@@ -336381,7 +336449,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -336431,7 +336499,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection"
]
@@ -336439,7 +336507,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -336484,7 +336552,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration"
]
@@ -336492,7 +336560,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
"ProvisioningState": "System.String",
@@ -336535,7 +336603,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration"
]
@@ -336543,7 +336611,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Primary": "System.Nullable`1[System.Boolean]",
@@ -336589,7 +336657,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe"
]
@@ -336597,7 +336665,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -336649,7 +336717,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -336688,7 +336756,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration"
]
@@ -336696,7 +336764,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -336748,7 +336816,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule"
]
@@ -336756,7 +336824,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -336811,7 +336879,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet"
]
@@ -336819,7 +336887,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -336866,7 +336934,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule"
]
@@ -336874,7 +336942,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
"Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]",
@@ -336917,7 +336985,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -336959,7 +337027,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -336998,7 +337066,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration"
]
@@ -337006,7 +337074,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HeaderName": "System.String",
"HeaderValue": "System.String"
@@ -337044,7 +337112,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition"
]
@@ -337052,7 +337120,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IgnoreCase": "System.Nullable`1[System.Boolean]",
"Negate": "System.Nullable`1[System.Boolean]",
@@ -337092,7 +337160,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule"
]
@@ -337100,7 +337168,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -337149,7 +337217,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate"
]
@@ -337157,7 +337225,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -337207,7 +337275,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile"
]
@@ -337215,7 +337283,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
"SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
@@ -337260,7 +337328,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]",
"VerifyClientRevocation": "System.String"
@@ -337298,7 +337366,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate"
]
@@ -337306,7 +337374,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ValidatedCertData": "System.String",
@@ -337350,7 +337418,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate"
]
@@ -337358,7 +337426,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -337400,7 +337468,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap"
]
@@ -337408,7 +337476,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -337458,7 +337526,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule"
]
@@ -337466,7 +337534,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -337648,7 +337716,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -337686,7 +337754,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion"
]
@@ -337694,7 +337762,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]",
"MatchVariable": "System.String",
@@ -337734,7 +337802,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet"
]
@@ -337742,7 +337810,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
"RuleSetVersion": "System.String",
@@ -337781,7 +337849,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride"
]
@@ -337789,7 +337857,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
"RuleGroupName": "System.String"
@@ -337827,7 +337895,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride"
]
@@ -337835,7 +337903,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleId": "System.String",
"State": "System.String",
@@ -337874,7 +337942,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -337917,7 +337985,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule"
]
@@ -337925,7 +337993,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
"Priority": "System.Int32",
@@ -337967,7 +338035,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition"
]
@@ -337975,7 +338043,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]",
"MatchValues": "System.Collections.Generic.List`1[System.String]",
@@ -338019,7 +338087,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable"
]
@@ -338027,7 +338095,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VariableName": "System.String",
"Selector": "System.String"
@@ -338065,7 +338133,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String",
@@ -338104,7 +338172,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BandwidthInMbps": "System.Int32",
"PeeringLocation": "System.String",
@@ -338143,7 +338211,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization"
]
@@ -338151,7 +338219,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -338193,7 +338261,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPeering"
]
@@ -338201,7 +338269,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPeering": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -338263,7 +338331,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
"RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
@@ -338309,7 +338377,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPeeringConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdvertisedPublicPrefixes": "System.Collections.Generic.List`1[System.String]",
"AdvertisedCommunities": "System.Collections.Generic.List`1[System.String]",
@@ -338353,7 +338421,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteFilter": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -338411,7 +338479,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule"
]
@@ -338419,7 +338487,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -338461,7 +338529,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection"
]
@@ -338469,7 +338537,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IPv6CircuitConnectionConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig",
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338518,7 +338586,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefix": "System.String",
"CircuitConnectionStatus": "System.String"
@@ -338556,7 +338624,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection"
]
@@ -338564,7 +338632,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338620,7 +338688,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -338657,7 +338725,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering"
]
@@ -338665,7 +338733,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -338729,7 +338797,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink"
]
@@ -338737,7 +338805,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
"RouterName": "System.String",
@@ -338785,7 +338853,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CknSecretIdentifier": "System.String",
"CakSecretIdentifier": "System.String",
@@ -338825,7 +338893,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -338863,7 +338931,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration"
]
@@ -338871,7 +338939,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSInboundNatPool"
]
@@ -338879,7 +338947,7 @@
"Microsoft.Azure.Commands.Network.Models.PSInboundNatPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -338940,7 +339008,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule"
]
@@ -338948,7 +339016,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -339012,7 +339080,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSOutboundRule"
]
@@ -339020,7 +339088,7 @@
"Microsoft.Azure.Commands.Network.Models.PSOutboundRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -339072,7 +339140,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSProbe"
]
@@ -339080,7 +339148,7 @@
"Microsoft.Azure.Commands.Network.Models.PSProbe": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -339148,7 +339216,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -339186,7 +339254,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress"
]
@@ -339194,7 +339262,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag"
]
@@ -339202,7 +339270,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -339240,7 +339308,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer"
]
@@ -339248,7 +339316,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -339290,7 +339358,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy"
]
@@ -339298,7 +339366,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destinations": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -339339,7 +339407,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute"
]
@@ -339347,7 +339415,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -339389,7 +339457,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAddressSpace": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"AddressPrefixesText": "System.String"
@@ -339427,7 +339495,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBgpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpPeeringAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]",
"PeerWeight": "System.Nullable`1[System.Int32]",
@@ -339467,7 +339535,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress"
]
@@ -339475,7 +339543,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Etag": "System.String",
@@ -339514,7 +339582,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Int32",
"Name": "System.String",
@@ -339553,7 +339621,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration]",
@@ -339609,7 +339677,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration"
]
@@ -339617,7 +339685,7 @@
"Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -339657,7 +339725,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy"
]
@@ -339665,7 +339733,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -339709,7 +339777,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSRadiusServer"
]
@@ -339717,7 +339785,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRadiusServer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RadiusServerScore": "System.Int32",
"RadiusServerSecret": "System.String",
@@ -339756,7 +339824,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate"
]
@@ -339764,7 +339832,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -339805,7 +339873,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate"
]
@@ -339813,7 +339881,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -339854,7 +339922,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration"
]
@@ -339862,7 +339930,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -339907,7 +339975,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule"
]
@@ -339915,7 +339983,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
"ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
@@ -339962,7 +340030,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping"
]
@@ -339970,7 +340038,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "System.String",
"PortRange": "System.String"
@@ -340008,7 +340076,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup"
]
@@ -340016,7 +340084,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsDefault": "System.Boolean",
"ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -340062,7 +340130,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember"
]
@@ -340070,7 +340138,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"AttributeType": "System.String",
@@ -340109,7 +340177,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VirtualNetworkCommunity": "System.String",
"RegionalCommunity": "System.String"
@@ -340151,7 +340219,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.String",
"Enforcement": "System.String"
@@ -340189,7 +340257,7 @@
"Microsoft.Azure.Commands.Network.Models.PSDhcpOptions": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsServers": "System.Collections.Generic.List`1[System.String]",
"DnsServersText": "System.String"
@@ -340227,7 +340295,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering"
]
@@ -340235,7 +340303,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
@@ -340295,7 +340363,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -340332,7 +340400,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpAllocation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
@@ -340387,7 +340455,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -340455,7 +340523,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer"
]
@@ -340463,7 +340531,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -340505,7 +340573,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllocatedIpAddresses": "System.Collections.Generic.List`1[System.String]",
"VpnClientConnectionsCount": "System.Int32",
@@ -340546,7 +340614,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration"
]
@@ -340554,7 +340622,7 @@
"Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -340603,7 +340671,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
"AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -340644,7 +340712,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ids": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Labels": "System.Collections.Generic.List`1[System.String]"
@@ -340682,7 +340750,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVnetRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StaticRoutesConfig": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig",
"StaticRoutes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]"
@@ -340720,7 +340788,7 @@
"Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PropagateStaticRoutes": "System.Boolean",
"VnetLocalRouteOverrideCriteria": "System.String"
@@ -340758,7 +340826,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSStaticRoute"
]
@@ -340766,7 +340834,7 @@
"Microsoft.Azure.Commands.Network.Models.PSStaticRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -340805,7 +340873,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup"
]
@@ -340813,7 +340881,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsDefault": "System.Boolean",
"P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -340859,7 +340927,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember"
]
@@ -340867,7 +340935,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"AttributeType": "System.String",
@@ -340906,7 +340974,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet"
]
@@ -340914,7 +340982,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
"Tag": "System.Collections.Hashtable",
@@ -340964,7 +341032,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup"
]
@@ -340972,7 +341040,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]",
"RuleGroupName": "System.String",
@@ -341012,7 +341080,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule"
]
@@ -341020,7 +341088,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleId": "System.Int32",
"Description": "System.String",
@@ -341061,7 +341129,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool"
]
@@ -341069,7 +341137,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]",
@@ -341109,7 +341177,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings"
]
@@ -341117,7 +341185,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"Servers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]",
@@ -341157,7 +341225,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer"
]
@@ -341165,7 +341233,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"Address": "System.String",
@@ -341205,7 +341273,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet"
]
@@ -341213,7 +341281,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
"Tiers": "System.Collections.Generic.IList`1[System.String]",
@@ -341253,7 +341321,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup"
]
@@ -341261,7 +341329,7 @@
"Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Bastion",
"Name": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String"
},
@@ -341307,7 +341375,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration"
]
@@ -341315,7 +341383,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -341358,7 +341426,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBastion": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
@@ -341428,7 +341496,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSBgpCommunity"
]
@@ -341436,7 +341504,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBgpCommunity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IsAuthorizedToUse": "System.Boolean",
"CommunityPrefixes": "System.Collections.Generic.List`1[System.String]",
@@ -341479,7 +341547,7 @@
"Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterface": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -341528,7 +341596,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule"
]
@@ -341536,7 +341604,7 @@
"Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -341583,7 +341651,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -341620,7 +341688,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Bounds": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds",
"BoundsText": "System.String"
@@ -341658,7 +341726,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Min": "System.Int32",
"Max": "System.Int32"
@@ -341696,7 +341764,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubId": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -341733,7 +341801,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection"
]
@@ -341741,7 +341809,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -341788,7 +341856,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths"
]
@@ -341796,7 +341864,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ValueInGbps": "System.Nullable`1[System.Int32]",
"OfferName": "System.String"
@@ -341834,7 +341902,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered"
]
@@ -341842,7 +341910,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ValueInMbps": "System.Int32",
"OfferName": "System.String"
@@ -341880,7 +341948,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
"PrivateIPAddress": "System.String"
@@ -341918,7 +341986,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
"Count": "System.Int32"
@@ -341956,13 +342024,13 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress"
},
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Address": "System.String"
},
@@ -341999,7 +342067,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -342043,7 +342111,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpPrefixes": "System.Collections.Generic.IList`1[System.String]"
},
@@ -342080,7 +342148,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -342118,7 +342186,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -342208,7 +342276,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection"
]
@@ -342216,7 +342284,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]",
@@ -342290,7 +342358,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "System.String"
},
@@ -342327,7 +342395,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule"
]
@@ -342335,7 +342403,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -342397,7 +342465,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol"
]
@@ -342405,7 +342473,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProtocolType": "System.String",
"Port": "System.UInt32"
@@ -342457,7 +342525,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration"
]
@@ -342465,7 +342533,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection"
]
@@ -342473,7 +342541,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]",
@@ -342547,7 +342615,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "System.String"
},
@@ -342584,7 +342652,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule"
]
@@ -342592,7 +342660,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -342653,7 +342721,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection"
]
@@ -342661,7 +342729,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
@@ -342735,7 +342803,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule"
]
@@ -342743,7 +342811,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -342805,7 +342873,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewall": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses",
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
@@ -343103,7 +343171,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tag": "System.Collections.Hashtable",
"FqdnTagName": "System.String",
@@ -343149,7 +343217,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Servers": "System.Collections.Generic.IList`1[System.String]",
"EnableProxy": "System.Nullable`1[System.Boolean]"
@@ -343187,7 +343255,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableExplicitProxy": "System.Nullable`1[System.Boolean]",
"EnablePacFile": "System.Nullable`1[System.Boolean]",
@@ -343229,7 +343297,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
"Mode": "System.String"
@@ -343267,7 +343335,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BypassTrafficSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting]",
"SignatureOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride]",
@@ -343306,7 +343374,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting"
]
@@ -343314,7 +343382,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
"DestinationAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -343358,7 +343426,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride"
]
@@ -343366,7 +343434,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"Mode": "System.String"
@@ -343404,7 +343472,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Tier": "System.String"
},
@@ -343441,7 +343509,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateRanges": "System.Collections.Generic.IList`1[System.String]",
"AutoLearnPrivateRanges": "System.String"
@@ -343479,7 +343547,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllowSqlRedirect": "System.Nullable`1[System.Boolean]"
},
@@ -343516,7 +343584,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -343554,7 +343622,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateAuthority": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority"
},
@@ -343591,7 +343659,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"KeyVaultSecretId": "System.String"
@@ -343637,7 +343705,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -343688,7 +343756,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection"
]
@@ -343696,7 +343764,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"RuleCollectionType": "System.String",
@@ -343735,7 +343803,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -343783,7 +343851,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]",
"ManagementGroups": "System.Collections.Generic.List`1[System.String]",
@@ -343825,7 +343893,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes"
]
@@ -343833,7 +343901,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagementGroups": "System.Collections.Generic.List`1[System.String]",
"Subscriptions": "System.Collections.Generic.List`1[System.String]",
@@ -343874,7 +343942,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CreatedAt": "System.Nullable`1[System.DateTime]",
"LastModifiedAt": "System.Nullable`1[System.DateTime]",
@@ -343929,7 +343997,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration"
]
@@ -343937,7 +344005,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConfigurationGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -343988,7 +344056,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup"
]
@@ -343996,7 +344064,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"MemberType": "System.String"
@@ -344034,7 +344102,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem"
]
@@ -344042,7 +344110,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkGroupId": "System.String",
"UseHubGateway": "System.String",
@@ -344082,7 +344150,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub"
]
@@ -344090,7 +344158,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceId": "System.String",
"ResourceType": "System.String"
@@ -344128,7 +344196,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule"
]
@@ -344136,7 +344204,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]",
"RuleCollectionAppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -344185,7 +344253,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem"
]
@@ -344193,7 +344261,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkGroupId": "System.String"
},
@@ -344230,7 +344298,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus"
]
@@ -344238,7 +344306,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConfigurationIds": "System.Collections.Generic.IList`1[System.String]",
"CommitTime": "System.Nullable`1[System.DateTime]",
@@ -344281,7 +344349,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration"
]
@@ -344289,7 +344357,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ConfigurationGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]",
"AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]",
@@ -344338,7 +344406,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule"
]
@@ -344346,7 +344414,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]",
"RuleCollectionAppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]",
@@ -344393,7 +344461,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface"
]
@@ -344401,7 +344469,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Container": "Microsoft.Azure.Commands.Network.Models.PSContainer",
"ContainerNetworkInterfaceConfiguration": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
@@ -344447,7 +344515,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -344484,7 +344552,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
@@ -344528,7 +344596,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile"
]
@@ -344536,7 +344604,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"ProvisioningState": "System.String",
@@ -344578,7 +344646,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration"
]
@@ -344586,7 +344654,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -344632,7 +344700,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration"
]
@@ -344640,7 +344708,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation"
]
@@ -344648,7 +344716,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties",
"Id": "System.String",
@@ -344687,7 +344755,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Region": "System.String",
@@ -344727,7 +344795,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Vendor": "System.String",
"BundledScaleUnit": "System.String",
@@ -344766,7 +344834,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSResourceId"
]
@@ -344774,7 +344842,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties"
]
@@ -344782,7 +344850,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"PublicIpAddress": "System.String",
@@ -344821,7 +344889,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances"
]
@@ -344829,7 +344897,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceCount": "System.Nullable`1[System.Int32]",
"ScaleUnit": "System.String"
@@ -344867,7 +344935,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Int32",
"Address": "System.String",
@@ -344906,7 +344974,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Port": "System.Nullable`1[System.Int32]",
"ResourceId": "System.String"
@@ -344953,7 +345021,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject"
]
@@ -344961,7 +345029,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
"Type": "System.String",
@@ -345000,7 +345068,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WorkspaceResourceId": "System.String"
},
@@ -345037,7 +345105,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject"
]
@@ -345045,7 +345113,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
"Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
@@ -345089,7 +345157,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject"
]
@@ -345097,7 +345165,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Scope": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope",
"Name": "System.String",
@@ -345140,7 +345208,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]",
"Exclude": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]",
@@ -345180,7 +345248,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem"
]
@@ -345188,7 +345256,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Address": "System.String"
},
@@ -345225,7 +345293,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject"
]
@@ -345233,7 +345301,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
"SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
@@ -345276,7 +345344,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "GetType",
@@ -345310,7 +345378,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RoundTripTimeMs": "System.Nullable`1[System.Double]",
"ChecksFailedPercent": "System.Nullable`1[System.Int32]"
@@ -345348,7 +345416,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot"
]
@@ -345356,7 +345424,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Hops": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -345398,7 +345466,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSConnectivityHop"
]
@@ -345406,7 +345474,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectivityHop": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Issues": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]",
"NextHopIds": "System.Collections.Generic.List`1[System.String]",
@@ -345449,7 +345517,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue"
]
@@ -345457,7 +345525,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Context": "System.Collections.Generic.List`1[System.Collections.Generic.Dictionary`2[System.String,System.String]]",
"Origin": "System.String",
@@ -345505,7 +345573,7 @@
"Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Version": "System.Nullable`1[System.Int32]",
"Type": "System.String"
@@ -345543,7 +345611,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -345581,7 +345649,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkWatcherFlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties"
},
@@ -345622,7 +345690,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"TrafficAnalyticsInterval": "System.Nullable`1[System.Int32]",
@@ -345667,7 +345735,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Include": "System.Collections.Generic.List`1[System.String]",
"Exclude": "System.Collections.Generic.List`1[System.String]"
@@ -345705,7 +345773,7 @@
"Microsoft.Azure.Commands.Network.Models.PSStorageLocation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StorageId": "System.String",
"StoragePath": "System.String",
@@ -345744,7 +345812,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter"
]
@@ -345752,7 +345820,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocol": "System.String",
"RemoteIPAddress": "System.String",
@@ -345793,7 +345861,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.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.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType"
]
@@ -345801,7 +345869,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -345888,7 +345956,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry"
]
@@ -345896,7 +345964,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]",
@@ -345936,7 +346004,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState"
]
@@ -345944,7 +346012,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"Cities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]",
@@ -345984,7 +346052,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity"
]
@@ -345992,7 +346060,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"CityName": "System.String"
@@ -346030,7 +346098,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Country": "System.String",
"State": "System.String",
@@ -346069,7 +346137,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem"
]
@@ -346077,7 +346145,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Latencies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]",
"Provider": "System.String",
@@ -346117,7 +346185,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo"
]
@@ -346125,7 +346193,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TimeStamp": "System.Nullable`1[System.DateTime]",
"Score": "System.Nullable`1[System.Int32]"
@@ -346163,7 +346231,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView"
]
@@ -346171,7 +346239,7 @@
"Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EffectiveSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]",
"NetworkInterfaceSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -346216,7 +346284,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTopologyResource"
]
@@ -346224,7 +346292,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTopologyResource": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Associations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]",
"Name": "System.String",
@@ -346265,7 +346333,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation"
]
@@ -346273,7 +346341,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AssociationType": "System.String",
"Name": "System.String",
@@ -346312,7 +346380,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails"
]
@@ -346320,7 +346388,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecommendedActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]",
"Id": "System.String",
@@ -346362,7 +346430,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions"
]
@@ -346370,7 +346438,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ActionId": "System.String",
"ActionText": "System.String",
@@ -346410,7 +346478,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig"
]
@@ -346418,7 +346486,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]",
"Name": "System.String",
@@ -346459,7 +346527,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet"
]
@@ -346467,7 +346535,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpAddresses": "System.Collections.Generic.IList`1[System.String]",
"Ttl": "System.Int32",
@@ -346510,7 +346578,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subscriptions": "System.Collections.Generic.List`1[System.String]",
"SubscriptionsText": "System.String"
@@ -346548,7 +346616,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection"
]
@@ -346556,7 +346624,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -346602,7 +346670,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration"
]
@@ -346610,7 +346678,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -346658,7 +346726,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -346700,7 +346768,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSBgpConnection"
]
@@ -346708,7 +346776,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBgpConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerIp": "System.String",
@@ -346751,7 +346819,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration"
]
@@ -346759,7 +346827,7 @@
"Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -346801,7 +346869,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection"
]
@@ -346809,7 +346877,7 @@
"Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -346853,7 +346921,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable"
]
@@ -346866,7 +346934,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVHubRoute"
]
@@ -346874,7 +346942,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVHubRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Destinations": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -346915,7 +346983,7 @@
"Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies"
},
@@ -346952,7 +347020,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Allow": "System.Nullable`1[System.Boolean]",
"Optimize": "System.Nullable`1[System.Boolean]",
@@ -346991,7 +347059,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -347043,7 +347111,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -347116,7 +347184,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy"
]
@@ -347124,7 +347192,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LocalAddressRanges": "System.String[]",
"RemoteAddressRanges": "System.String[]"
@@ -347162,7 +347230,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth"
]
@@ -347170,7 +347238,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressBytesTransferred": "System.Nullable`1[System.Int64]",
"EgressBytesTransferred": "System.Nullable`1[System.Int64]",
@@ -347211,7 +347279,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"isSaInitiator": "System.Boolean",
"quickModeSa": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa]",
@@ -347260,7 +347328,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa"
]
@@ -347268,7 +347336,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"isSaInitiator": "System.Boolean",
"localTrafficSelectors": "System.Collections.Generic.List`1[System.String]",
@@ -347317,7 +347385,7 @@
"Microsoft.Azure.Commands.Network.Models.PSUsageName": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.String",
"LocalizedValue": "System.String"
@@ -347355,7 +347423,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSite": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -347409,7 +347477,7 @@
"Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies"
},
@@ -347446,7 +347514,7 @@
"Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Allow": "System.Nullable`1[System.Boolean]",
"Optimize": "System.Nullable`1[System.Boolean]",
@@ -347485,7 +347553,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkSpeedInMbps": "System.Int32",
"DeviceVendor": "System.String",
@@ -347524,7 +347592,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink"
]
@@ -347532,7 +347600,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -347577,7 +347645,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Asn": "System.Nullable`1[System.Int64]",
"BgpPeeringAddress": "System.String"
@@ -347615,7 +347683,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinkSpeedInMbps": "System.Int32",
"LinkProviderName": "System.String"
@@ -347653,7 +347721,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AadTenant": "System.String",
"AadAudience": "System.String",
@@ -347692,7 +347760,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSClientCertificate"
]
@@ -347700,7 +347768,7 @@
"Microsoft.Azure.Commands.Network.Models.PSClientCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Thumbprint": "System.String"
@@ -347738,7 +347806,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate"
]
@@ -347746,7 +347814,7 @@
"Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"PublicCertData": "System.String"
@@ -347784,7 +347852,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection"
]
@@ -347792,7 +347860,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"UseLocalAzureIpAddress": "System.Boolean",
@@ -347849,7 +347917,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnConnection"
]
@@ -347857,7 +347925,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration",
@@ -347913,7 +347981,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration"
]
@@ -347921,7 +347989,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String",
"PublicIpAddress": "System.String",
@@ -347960,7 +348028,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule"
]
@@ -347968,7 +348036,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -348019,7 +348087,7 @@
"Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex",
"Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"isSaInitiator": "System.Boolean",
"quickModeSa": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa]",
@@ -348068,7 +348136,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa"
]
@@ -348076,7 +348144,7 @@
"Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex",
"Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"isSaInitiator": "System.Boolean",
"localTrafficSelectors": "System.Collections.Generic.List`1[System.String]",
@@ -348125,7 +348193,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult"
]
@@ -348133,7 +348201,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Profile": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
"NetworkSecurityGroupResult": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult"
@@ -348171,7 +348239,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Direction": "System.String",
"Protocol": "System.String",
@@ -348212,7 +348280,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EvaluatedNetworkSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]",
"SecurityRuleAccessResult": "System.String",
@@ -348251,7 +348319,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup"
]
@@ -348259,7 +348327,7 @@
"Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MatchedRule": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule",
"RulesEvaluationResult": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]",
@@ -348300,7 +348368,7 @@
"Microsoft.Azure.Commands.Network.Models.PSMatchedRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RuleName": "System.String",
"Action": "System.String"
@@ -348338,7 +348406,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult"
]
@@ -348346,7 +348414,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProtocolMatched": "System.Boolean",
"SourceMatched": "System.Boolean",
@@ -348388,7 +348456,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol"
]
@@ -348396,7 +348464,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProtocolType": "System.String",
"Port": "System.UInt32"
@@ -348444,7 +348512,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"RuleType": "System.String"
@@ -348482,7 +348550,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -348544,7 +348612,7 @@
"Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -348631,7 +348699,7 @@
"Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Methods": [
{
"Name": "Equals",
@@ -348718,7 +348786,7 @@
"Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager",
"Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressPrefix": "System.String",
"AddressPrefixType": "System.String"
@@ -348756,7 +348824,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSHTTPHeader"
]
@@ -348764,7 +348832,7 @@
"Microsoft.Azure.Commands.Network.Models.PSHTTPHeader": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -348826,7 +348894,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.1.2.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.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"GenericTypeArguments": [
"Microsoft.Azure.Commands.Network.Models.PSConnectivityHop"
]
diff --git a/tools/Tools.Common/SerializedCmdlets/Az.RedisCache.json b/tools/Tools.Common/SerializedCmdlets/Az.RedisCache.json
index 354e584f47c4..91126f08d982 100644
--- a/tools/Tools.Common/SerializedCmdlets/Az.RedisCache.json
+++ b/tools/Tools.Common/SerializedCmdlets/Az.RedisCache.json
@@ -1,6 +1,6 @@
{
"ModuleName": "Az.RedisCache",
- "ModuleVersion": "1.6.0",
+ "ModuleVersion": "1.7.0",
"Cmdlets": [
{
"VerbName": "Export",
@@ -69,6 +69,15 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "PreferredDataArchiveAuthMethod",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "PassThru",
"Type": {
@@ -178,6 +187,21 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredDataArchiveAuthMethod",
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"
+ },
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "PassThru",
@@ -237,7 +261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RedisCache.Models",
"Name": "Microsoft.Azure.Commands.RedisCache.Models.RedisCacheAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.RedisCacheAttributes, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.RedisCacheAttributes, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableNonSslPort": "System.Boolean",
"Tag": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -430,7 +454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RedisCache.Models",
"Name": "Microsoft.Azure.Commands.RedisCache.Models.PSRedisFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.PSRedisFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.PSRedisFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ResourceGroupName": "System.String",
"Name": "System.String",
@@ -617,7 +641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Redis.Models",
"Name": "Microsoft.Azure.Management.Redis.Models.RedisAccessKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Redis.Models.RedisAccessKeys, Microsoft.Azure.Management.Redis, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Redis.Models.RedisAccessKeys, Microsoft.Azure.Management.Redis, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -788,11 +812,15 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RedisCache.Models",
"Name": "Microsoft.Azure.Commands.RedisCache.Models.PSRedisLinkedServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.PSRedisLinkedServer, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.PSRedisLinkedServer, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrimaryServerName": "System.String",
"SecondaryServerName": "System.String",
- "ProvisioningState": "System.String"
+ "ProvisioningState": "System.String",
+ "LinkedRedisCacheLocation": "System.String",
+ "ServerRole": "System.String",
+ "PrimaryHostName": "System.String",
+ "GeoReplicatedPrimaryHostName": "System.String"
},
"Methods": [
{
@@ -1125,7 +1153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RedisCache.Models",
"Name": "Microsoft.Azure.Commands.RedisCache.Models.PSScheduleEntry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.PSScheduleEntry, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RedisCache.Models.PSScheduleEntry, Microsoft.Azure.PowerShell.Cmdlets.RedisCache, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartHourUtc": "System.Int32",
"MaintenanceWindow": "System.Nullable`1[System.TimeSpan]",
@@ -1329,6 +1357,15 @@
},
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "PreferredDataArchiveAuthMethod",
+ "Type": {
+ "Namespace": "System"